linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / zope-hookable / default.nix
blob6c19ffbec029244e637a634ea41d1f197c1d16db
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_testing
5 }:
7 buildPythonPackage rec {
8   pname = "zope-hookable";
9   version = "5.0.1";
11   src = fetchPypi {
12     pname = "zope.hookable";
13     inherit version;
14     sha256 = "0hc82lfr7bk53nvbxvjkibkarngyrzgfk2i6bg8wshl0ly0pdl19";
15   };
17   checkInputs = [ zope_testing ];
19   meta = with lib; {
20     description = "Supports the efficient creation of “hookable” objects";
21     homepage = "https://github.com/zopefoundation/zope.hookable";
22     license = licenses.zpl21;
23   };