e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
32 lines
627 B
Nix
32 lines
627 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope-proxy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.location";
|
|
version = "4.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Fx7tyKIOw6isJxOaqQzyd/93dy6gMrVLaicBp5J7OsU=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope-proxy ];
|
|
|
|
# ignore circular dependency on zope-schema
|
|
preBuild = ''
|
|
sed -i '/zope.schema/d' setup.py
|
|
'';
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/zopefoundation/zope.location/";
|
|
description = "Zope Location";
|
|
license = licenses.zpl20;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
|
|
}
|