depot/third_party/nixpkgs/pkgs/development/python-modules/zope-hookable/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

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;
};
}