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

View File

@@ -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 ];
};
}