My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_proxy/default.nix

28 lines
571 B

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