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