Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / css-html-js-minify / default.nix
blobf84dfbcaaecb4a118379e698e73c8b0e6a8a6bf6
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "css-html-js-minify";
8   version = "2.5.5";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     extension = "zip";
14     sha256 = "4a9f11f7e0496f5284d12111f3ba4ff5ff2023d12f15d195c9c48bd97013746c";
15   };
17   doCheck = false; # Tests are useless and broken
19   pythonImportsCheck = [ "css_html_js_minify" ];
21   meta = with lib; {
22     description = "StandAlone Async cross-platform Minifier for the Web";
23     mainProgram = "css-html-js-minify";
24     homepage = "https://github.com/juancarlospaco/css-html-js-minify";
25     license = with licenses; [ gpl3Plus lgpl3Plus mit ];
26     maintainers = with maintainers; [ FlorianFranzen ];
27   };