pythonPackages.zope_deprecation: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 13:16:04 -04:00 committed by Frederik Rietdijk
parent b37a318d41
commit 5c440b5aae
2 changed files with 26 additions and 15 deletions

@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_testing
}:
buildPythonPackage rec {
pname = "zope.deprecation";
version = "4.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78";
};
buildInputs = [ zope_testing ];
meta = with stdenv.lib; {
homepage = http://github.com/zopefoundation/zope.deprecation;
description = "Zope Deprecation Infrastructure";
license = licenses.zpl20;
maintainers = with maintainers; [ garbas domenkozar ];
};
}

@ -2199,21 +2199,7 @@ in {
pywavelets = callPackage ../development/python-modules/pywavelets { };
zope_deprecation = buildPythonPackage rec {
name = "zope.deprecation-4.1.2";
src = pkgs.fetchurl {
url = "mirror://pypi/z/zope.deprecation/${name}.tar.gz";
sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78";
};
buildInputs = with self; [ zope_testing ];
meta = {
maintainers = with maintainers; [ garbas domenkozar ];
platforms = platforms.all;
};
};
zope_deprecation = callPackage ../development/python-modules/zope_deprecation { };
validictory = buildPythonPackage rec {
name = "validictory-1.0.0a2";