1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 zope-testing,
7}:
8
9buildPythonPackage rec {
10 pname = "zope-hookable";
11 version = "6.0";
12 pyproject = true;
13
14 src = fetchPypi {
15 pname = "zope.hookable";
16 inherit version;
17 hash = "sha256-FmiZPUCnz9yGeEPdVyWSnn+DpbDBlccJrx2u+CdPQ8s=";
18 };
19
20 nativeBuildInputs = [ setuptools ];
21
22 nativeCheckInputs = [ zope-testing ];
23
24 meta = with lib; {
25 description = "Supports the efficient creation of “hookable” objects";
26 homepage = "https://github.com/zopefoundation/zope.hookable";
27 license = licenses.zpl21;
28 };
29}