depot/third_party/nixpkgs/pkgs/development/python-modules/zope_exceptions/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

28 lines
572 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_interface
}:
buildPythonPackage rec {
pname = "zope.exceptions";
version = "4.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-YZ0kpMZb7Zez3QUV5zLoK2nxVdQsyUlV0b6MKCiGg80=";
};
propagatedBuildInputs = [ zope_interface ];
# circular deps
doCheck = false;
meta = with lib; {
description = "Exception interfaces and implementations";
homepage = "https://pypi.python.org/pypi/zope.exceptions";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}