504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
25 lines
541 B
Nix
25 lines
541 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope-testing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-hookable";
|
|
version = "5.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.hookable";
|
|
inherit version;
|
|
hash = "sha256-+2AfAKyH5apYKoExXtlnaM41EygHKdP1H3kxLiuLlKw=";
|
|
};
|
|
|
|
nativeCheckInputs = [ zope-testing ];
|
|
|
|
meta = with lib; {
|
|
description = "Supports the efficient creation of “hookable” objects";
|
|
homepage = "https://github.com/zopefoundation/zope.hookable";
|
|
license = licenses.zpl21;
|
|
};
|
|
}
|