nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 24 lines 527 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_testing 5}: 6 7buildPythonPackage rec { 8 pname = "zope-hookable"; 9 version = "5.1.0"; 10 11 src = fetchPypi { 12 pname = "zope.hookable"; 13 inherit version; 14 sha256 = "8fc3e6cd0486c6af48e3317c299def719b57538332a194e0b3bc6a772f4faa0e"; 15 }; 16 17 checkInputs = [ zope_testing ]; 18 19 meta = with lib; { 20 description = "Supports the efficient creation of hookable objects"; 21 homepage = "https://github.com/zopefoundation/zope.hookable"; 22 license = licenses.zpl21; 23 }; 24}