pythonPackages.zope_deprecation: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
b37a318d41
commit
5c440b5aae
25
pkgs/development/python-modules/zope_deprecation/default.nix
Normal file
25
pkgs/development/python-modules/zope_deprecation/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user