nixpkgs/pkgs/development/python-modules/zope_deprecation/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

26 lines
552 B
Nix

{ 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; [ garbas domenkozar ];
};
}