ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / zope_deprecation / default.nix
blob7eb66f7a9c5761a17d3b97a164c90bd6cfe8d9f3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_testing
5 }:
7 buildPythonPackage rec {
8   pname = "zope.deprecation";
9   version = "4.4.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0d453338f04bacf91bbfba545d8bcdf529aa829e67b705eac8c1a7fdce66e2df";
14   };
16   buildInputs = [ zope_testing ];
18   meta = with lib; {
19     homepage = "https://github.com/zopefoundation/zope.deprecation";
20     description = "Zope Deprecation Infrastructure";
21     license = licenses.zpl20;
22     maintainers = with maintainers; [ domenkozar ];
23   };