1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "css-html-js-minify";
9 version = "2.5.5";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 extension = "zip";
15 sha256 = "4a9f11f7e0496f5284d12111f3ba4ff5ff2023d12f15d195c9c48bd97013746c";
16 };
17
18 doCheck = false; # Tests are useless and broken
19
20 pythonImportsCheck = [ "css_html_js_minify" ];
21
22 meta = with lib; {
23 description = "StandAlone Async cross-platform Minifier for the Web";
24 mainProgram = "css-html-js-minify";
25 homepage = "https://github.com/juancarlospaco/css-html-js-minify";
26 license = with licenses; [
27 gpl3Plus
28 lgpl3Plus
29 mit
30 ];
31 maintainers = with maintainers; [ FlorianFranzen ];
32 };
33}