depot/third_party/nixpkgs/pkgs/development/python-modules/python-mimeparse/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

26 lines
637 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "python-mimeparse";
version = "1.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78";
};
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";
homepage = "https://github.com/dbtsai/python-mimeparse";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}