mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 13:43:22 +00:00
25 lines
512 B
Nix
25 lines
512 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_testing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope-hookable";
|
|
version = "5.2";
|
|
|
|
src = fetchPypi {
|
|
pname = "zope.hookable";
|
|
inherit version;
|
|
sha256 = "sha256-TDAYvPKznPXMz0CCb3mbS4wUAFbbeA+WywyjMqJDvSk=";
|
|
};
|
|
|
|
checkInputs = [ zope_testing ];
|
|
|
|
meta = with lib; {
|
|
description = "Supports the efficient creation of “hookable” objects";
|
|
homepage = "https://github.com/zopefoundation/zope.hookable";
|
|
license = licenses.zpl21;
|
|
};
|
|
}
|