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