depot/third_party/nixpkgs/pkgs/development/python-modules/zope-hookable/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

24 lines
512 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_testing
}:
buildPythonPackage rec {
pname = "zope-hookable";
version = "5.4";
src = fetchPypi {
pname = "zope.hookable";
inherit version;
sha256 = "sha256-+2AfAKyH5apYKoExXtlnaM41EygHKdP1H3kxLiuLlKw=";
};
checkInputs = [ zope_testing ];
meta = with lib; {
description = "Supports the efficient creation of hookable objects";
homepage = "https://github.com/zopefoundation/zope.hookable";
license = licenses.zpl21;
};
}