nixpkgs/pkgs/development/python-modules/zope_dottedname/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

23 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 ];
};
}