nixpkgs/pkgs/development/python-modules/zope_contenttype/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

25 lines
552 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope_testrunner
}:
buildPythonPackage rec {
pname = "zope.contenttype";
version = "4.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-NnVoeLxSWzY2TQ1b2ZovCw/TuaUND+m73Eqxs4rCOAA=";
};
nativeCheckInputs = [ zope_testrunner ];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.contenttype";
description = "A utility module for content-type (MIME type) handling";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}