summary refs log tree commit diff
path: root/pkgs/development/python-modules/potr/default.nix
blob: 671010bb9009ae493359dfb91d89c7fb15fee887 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, fetchPypi, buildPythonPackage, pycrypto }:

buildPythonPackage rec {
  pname = "python-potr";
  version = "1.0.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f95b9a7feaf8e3a6aaa898609f8a2ada55518cf52fc09152775c4c59c99b8ea6";
  };

  propagatedBuildInputs = [ pycrypto ];

  meta = with lib; {
    description = "A pure Python OTR implementation";
    homepage = "http://python-otr.pentabarf.de/";
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ ];
  };
}