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