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