2018-10-16 17:16:04 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, zope_testing
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.deprecation";
|
2018-11-04 10:35:23 +00:00
|
|
|
version = "4.3.0";
|
2018-10-16 17:16:04 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:23 +00:00
|
|
|
sha256 = "7d52e134bbaaa0d72e1e2bc90f0587f1adc116c4bdf15912afaf2f1e8856b224";
|
2018-10-16 17:16:04 +00: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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|