depot/third_party/nixpkgs/pkgs/development/python-modules/zope-hookable/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

29 lines
595 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;
};
}