pythonPackages.zope_dottedname: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-30 00:51:02 -04:00
parent f50579106a
commit 69e943ba3e
2 changed files with 23 additions and 13 deletions
@@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "zope.dottedname";
version = "3.4.6";
src = fetchPypi {
inherit pname version;
sha256 = "331d801d98e539fa6c5d50c3835ecc144c429667f483281505de53fc771e6bf5";
};
meta = with stdenv.lib; {
homepage = http://pypi.python.org/pypi/zope.dottedname;
description = "Resolver for Python dotted names";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}