2018-10-16 18:16:04 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_testing
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.deprecation";
|
2019-02-14 07:37:34 +00:00
|
|
|
version = "4.4.0";
|
2018-10-16 18:16:04 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 07:37:34 +00:00
|
|
|
sha256 = "0d453338f04bacf91bbfba545d8bcdf529aa829e67b705eac8c1a7fdce66e2df";
|
2018-10-16 18:16:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|