depot/third_party/nixpkgs/pkgs/development/python-modules/zope_dottedname/default.nix

23 lines
463 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "zope.dottedname";
version = "5.0";
src = fetchPypi {
inherit pname version;
sha256 = "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 ];
};
}