ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / potr / default.nix
blob671010bb9009ae493359dfb91d89c7fb15fee887
1 { lib, fetchPypi, buildPythonPackage, pycrypto }:
3 buildPythonPackage rec {
4   pname = "python-potr";
5   version = "1.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "f95b9a7feaf8e3a6aaa898609f8a2ada55518cf52fc09152775c4c59c99b8ea6";
10   };
12   propagatedBuildInputs = [ pycrypto ];
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   };