pythonPackages.zope_exceptions: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 10:22:15 -04:00
parent dbf529eea1
commit 4a51ac6876
2 changed files with 29 additions and 22 deletions

View File

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