nixpkgs/pkgs/development/python-modules/zope_deprecation/default.nix
2018-12-03 16:50:37 +01:00

26 lines
551 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, zope_testing
}:
buildPythonPackage rec {
pname = "zope.deprecation";
version = "4.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "7d52e134bbaaa0d72e1e2bc90f0587f1adc116c4bdf15912afaf2f1e8856b224";
};
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 ];
};
}