anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / zope-exceptions / default.nix
blob186112d1138d15fb0824fa36bd1fe5390aa53947
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   setuptools,
7   zope-interface,
8 }:
10 buildPythonPackage rec {
11   pname = "zope-exceptions";
12   version = "5.1";
13   pyproject = true;
15   disabled = pythonOlder "3.7";
17   src = fetchPypi {
18     pname = "zope.exceptions";
19     inherit version;
20     hash = "sha256-YRtMSUbDAWDbS3u9TzhhOzJoSvFn0xllCvm3O8ew6Xg=";
21   };
23   nativeBuildInputs = [ setuptools ];
25   propagatedBuildInputs = [ zope-interface ];
27   # circular deps
28   doCheck = false;
30   pythonImportsCheck = [ "zope.exceptions" ];
32   meta = with lib; {
33     description = "Exception interfaces and implementations";
34     homepage = "https://pypi.python.org/pypi/zope.exceptions";
35     changelog = "https://github.com/zopefoundation/zope.exceptions/blob/${version}/CHANGES.rst";
36     license = licenses.zpl21;
37     maintainers = [ ];
38   };