at master 519 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5 pycrypto, 6}: 7 8buildPythonPackage rec { 9 pname = "python-potr"; 10 version = "1.0.2"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "f95b9a7feaf8e3a6aaa898609f8a2ada55518cf52fc09152775c4c59c99b8ea6"; 16 }; 17 18 propagatedBuildInputs = [ pycrypto ]; 19 20 meta = with lib; { 21 description = "Pure Python OTR implementation"; 22 homepage = "http://python-otr.pentabarf.de/"; 23 license = licenses.lgpl3Plus; 24 maintainers = [ ]; 25 }; 26}