83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
22 lines
461 B
Nix
22 lines
461 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.dottedname";
|
|
version = "5.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-mfWDqAKFhqtMIXlGE+QR0BDNCZF/RdqXa9/udI87++w=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://pypi.python.org/pypi/zope.dottedname";
|
|
description = "Resolver for Python dotted names";
|
|
license = licenses.zpl20;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
|
|
}
|