Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-mimeparse / default.nix
blobddf89c914ad0b877eb6902b0df21186775c926ac
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "python-mimeparse";
9   version = "1.6.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78";
15   };
17   nativeCheckInputs = [
18     pytestCheckHook
19   ];
21   meta = with lib; {
22     description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";
23     homepage = "https://github.com/dbtsai/python-mimeparse";
24     license = licenses.mit;
25     maintainers = with maintainers; [ ];
26   };