1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_testing 5}: 6 7buildPythonPackage rec { 8 pname = "zope-hookable"; 9 version = "5.2"; 10 11 src = fetchPypi { 12 pname = "zope.hookable"; 13 inherit version; 14 sha256 = "sha256-TDAYvPKznPXMz0CCb3mbS4wUAFbbeA+WywyjMqJDvSk="; 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}