Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 28 lines 556 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5}: 6 7buildPythonPackage rec { 8 pname = "zope.proxy"; 9 version = "5.0.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-b6RMl6QStNxR4vX9Tcc8W9SZ01KA+IzSvNJviuHkV3s="; 14 }; 15 16 propagatedBuildInputs = [ zope_interface ]; 17 18 # circular deps 19 doCheck = false; 20 21 meta = with lib; { 22 homepage = "https://github.com/zopefoundation/zope.proxy"; 23 description = "Generic Transparent Proxies"; 24 license = licenses.zpl20; 25 maintainers = with maintainers; [ goibhniu ]; 26 }; 27 28}