Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / zope_interface / default.nix
blob2a8bd1d7854ba9a81af3562733b3ef6d83488d9c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_event
5 }:
7 buildPythonPackage rec {
8   pname = "zope.interface";
9   version = "5.5.2";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-v+4fP/YhQ4GUmeNI9bin86oCWfmspeDdrnOR0Fnc5nE=";
14   };
16   propagatedBuildInputs = [ zope_event ];
18   doCheck = false; # Circular deps.
20   meta = with lib; {
21     description = "Zope.Interface";
22     homepage = "https://zope.org/Products/ZopeInterface";
23     license = licenses.zpl20;
24     maintainers = [ maintainers.goibhniu ];
25   };