1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "python-mimeparse";
8 version = "1.6.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78";
13 };
14
15 # error: invalid command 'test'
16 doCheck = false;
17
18 meta = with lib; {
19 description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";
20 homepage = "https://github.com/dbtsai/python-mimeparse";
21 license = licenses.mit;
22 maintainers = with maintainers; [ ];
23 };
24}