linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / zope_exceptions / default.nix
blob0586227c61c5419a24b3016383aa3615722ba375
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , zope_interface
5 }:
7 buildPythonPackage rec {
8   pname = "zope.exceptions";
9   version = "4.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0d72886b1bb8af4c346a117a540f28ab122577f5e3a105a261be72cd15776fda";
14   };
16   propagatedBuildInputs = [ zope_interface ];
18   # circular deps
19   doCheck = false;
21   meta = with lib; {
22     description = "Exception interfaces and implementations";
23     homepage = "https://pypi.python.org/pypi/zope.exceptions";
24     license = licenses.zpl20;
25     maintainers = with maintainers; [ goibhniu ];
26   };