1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "zope.dottedname";
8 version = "4.3";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0cec09844d309550359ac1941abfcd9141e213f67f3c19bb8f90360c40787576";
13 };
14
15 meta = with lib; {
16 homepage = "http://pypi.python.org/pypi/zope.dottedname";
17 description = "Resolver for Python dotted names";
18 license = licenses.zpl20;
19 maintainers = with maintainers; [ goibhniu ];
20 };
21
22}