Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_proxy 5}: 6 7buildPythonPackage rec { 8 pname = "zope.location"; 9 version = "4.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-Fx7tyKIOw6isJxOaqQzyd/93dy6gMrVLaicBp5J7OsU="; 14 }; 15 16 propagatedBuildInputs = [ zope_proxy ]; 17 18 # ignore circular dependency on zope_schema 19 preBuild = '' 20 sed -i '/zope.schema/d' setup.py 21 ''; 22 23 doCheck = false; 24 25 meta = with lib; { 26 homepage = "https://github.com/zopefoundation/zope.location/"; 27 description = "Zope Location"; 28 license = licenses.zpl20; 29 maintainers = with maintainers; [ goibhniu ]; 30 }; 31 32}