nixpkgs/pkgs/development/python-modules/zope_proxy/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

29 lines
579 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, zope_interface
}:
buildPythonPackage rec {
pname = "zope.proxy";
version = "4.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "563c2454b2d0f23bca54d2e0e4d781149b7b06cb5df67e253ca3620f37202dd2";
};
propagatedBuildInputs = [ zope_interface ];
# circular deps
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/zopefoundation/zope.proxy;
description = "Generic Transparent Proxies";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}