1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_testing
5}:
6
7buildPythonPackage rec {
8 pname = "zope-hookable";
9 version = "4.2.0";
10
11 src = fetchPypi {
12 pname = "zope.hookable";
13 inherit version;
14 sha256 = "c1df3929a3666fc5a0c80d60a0c1e6f6ef97c7f6ed2f1b7cf49f3e6f3d4dde15";
15 };
16
17 checkInputs = [ zope_testing ];
18
19 meta = with lib; {
20 description = "Supports the efficient creation of “hookable” objects";
21 homepage = http://github.com/zopefoundation/zope.hookable;
22 license = licenses.zpl21;
23 };
24}