1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_testing 5}: 6 7buildPythonPackage rec { 8 pname = "zope-hookable"; 9 version = "5.4"; 10 11 src = fetchPypi { 12 pname = "zope.hookable"; 13 inherit version; 14 hash = "sha256-+2AfAKyH5apYKoExXtlnaM41EygHKdP1H3kxLiuLlKw="; 15 }; 16 17 nativeCheckInputs = [ 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}