pythonPackages.potr: 1.0.1 -> 1.0.2 (#44096)

This commit is contained in:
Alyssa Ross 2018-07-29 21:12:58 +02:00 committed by xeji
parent 1feb8e97c5
commit 4e33431b62
2 changed files with 21 additions and 18 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, pycrypto }:
buildPythonPackage rec {
pname = "python-potr";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "f95b9a7feaf8e3a6aaa898609f8a2ada55518cf52fc09152775c4c59c99b8ea6";
};
propagatedBuildInputs = [ pycrypto ];
meta = with stdenv.lib; {
description = "A pure Python OTR implementation";
homepage = "http://python-otr.pentabarf.de/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ globin ];
};
}

View File

@ -16670,24 +16670,7 @@ EOF
};
};
potr = buildPythonPackage rec {
version = "1.0.1";
name = "potr-${version}";
src = pkgs.fetchurl {
url = "mirror://pypi/p/python-potr/python-${name}.zip";
sha256 = "1b3vjbv8hvynwj6amw3rg5zj8bagynbj0ipy09xwksf1mb0kz8m8";
};
propagatedBuildInputs = with self ; [ pycrypto ];
meta = {
description = "A pure Python OTR implementation";
homepage = "http://python-otr.pentabarf.de/";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ globin ];
};
};
potr = callPackage ../development/python-modules/potr {};
pluggy = callPackage ../development/python-modules/pluggy {};