1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, zope_testing
5}:
6
7buildPythonPackage rec {
8 pname = "zope.deprecation";
9 version = "4.4.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0d453338f04bacf91bbfba545d8bcdf529aa829e67b705eac8c1a7fdce66e2df";
14 };
15
16 buildInputs = [ zope_testing ];
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/zopefoundation/zope.deprecation;
20 description = "Zope Deprecation Infrastructure";
21 license = licenses.zpl20;
22 maintainers = with maintainers; [ domenkozar ];
23 };
24
25}