e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
32 lines
600 B
Nix
32 lines
600 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools
|
|
, zope-testing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-hookable";
|
|
version = "6.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.hookable";
|
|
inherit version;
|
|
hash = "sha256-FmiZPUCnz9yGeEPdVyWSnn+DpbDBlccJrx2u+CdPQ8s=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
zope-testing
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Supports the efficient creation of “hookable” objects";
|
|
homepage = "https://github.com/zopefoundation/zope.hookable";
|
|
license = licenses.zpl21;
|
|
};
|
|
}
|