2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-29 14:17:47 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.dottedname";
|
2018-11-04 10:35:23 +00:00
|
|
|
version = "4.3";
|
2018-10-29 14:17:47 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:23 +00:00
|
|
|
sha256 = "0cec09844d309550359ac1941abfcd9141e213f67f3c19bb8f90360c40787576";
|
2018-10-29 14:17:47 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://pypi.python.org/pypi/zope.dottedname";
|
2018-10-29 14:17:47 +00:00
|
|
|
description = "Resolver for Python dotted names";
|
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|