Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zope-exceptions / default.nix
blobae38402c9736fd6d12ee98c8a76737c7079f2f03
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , setuptools
6 , zope-interface
7 }:
9 buildPythonPackage rec {
10   pname = "zope-exceptions";
11   version = "5.0.1";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "zope.exceptions";
18     inherit version;
19     hash = "sha256-MPxT5TOfX72dEzXg97afd/FePwbisXt/t++SXMJP3ZY=";
20   };
22   nativeBuildInputs = [
23     setuptools
24   ];
26   propagatedBuildInputs = [ zope-interface ];
28   # circular deps
29   doCheck = false;
31   pythonImportsCheck = [
32     "zope.exceptions"
33   ];
35   meta = with lib; {
36     description = "Exception interfaces and implementations";
37     homepage = "https://pypi.python.org/pypi/zope.exceptions";
38     changelog = "https://github.com/zopefoundation/zope.exceptions/blob/${version}/CHANGES.rst";
39     license = licenses.zpl21;
40     maintainers = with maintainers; [ goibhniu ];
41   };