python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / css-html-js-minify / default.nix
blobdf6f74caa5716168127b0105836b862007c8448a
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   distutils,
6   setuptools,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "css-html-js-minify";
12   version = "2.5.5";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchPypi {
18     inherit pname version;
19     extension = "zip";
20     hash = "sha256-Sp8R9+BJb1KE0SER87pP9f8gI9EvFdGVycSL2XATdGw=";
21   };
23   build-system = [
24     distutils
25     setuptools
26   ];
28   # Tests are useless and broken
29   doCheck = false;
31   pythonImportsCheck = [ "css_html_js_minify" ];
33   meta = with lib; {
34     description = "StandAlone Async cross-platform Minifier for the Web";
35     homepage = "https://github.com/juancarlospaco/css-html-js-minify";
36     license = with licenses; [
37       gpl3Plus
38       lgpl3Plus
39       mit
40     ];
41     maintainers = with maintainers; [ FlorianFranzen ];
42     mainProgram = "css-html-js-minify";
43   };