summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_deprecation/default.nix
blob: b56e19697119ae17f9245b5570295a8c248ebb13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_testing
}:

buildPythonPackage rec {
  pname = "zope.deprecation";
  version = "4.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0d453338f04bacf91bbfba545d8bcdf529aa829e67b705eac8c1a7fdce66e2df";
  };

  buildInputs = [ zope_testing ];

  meta = with stdenv.lib; {
    homepage = https://github.com/zopefoundation/zope.deprecation;
    description = "Zope Deprecation Infrastructure";
    license = licenses.zpl20;
    maintainers = with maintainers; [ domenkozar ];
  };

}