Merge pull request #171738 from SuperSandro2000/mimeparse

python310Packages.python-mimeparse: execute tests
main
Sandro 2 years ago committed by GitHub
commit 48c0ce66da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      pkgs/development/python-modules/python-mimeparse/default.nix

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestCheckHook
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -12,8 +13,9 @@ buildPythonPackage rec {
sha256 = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78"; sha256 = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78";
}; };
# error: invalid command 'test' checkInputs = [
doCheck = false; pytestCheckHook
];
meta = with lib; { meta = with lib; {
description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges"; description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";

Loading…
Cancel
Save