1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5}: 6 7buildPythonPackage rec { 8 pname = "zope.exceptions"; 9 version = "4.6"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-YZ0kpMZb7Zez3QUV5zLoK2nxVdQsyUlV0b6MKCiGg80="; 14 }; 15 16 propagatedBuildInputs = [ zope_interface ]; 17 18 # circular deps 19 doCheck = false; 20 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 }; 27 28}