depot/third_party/nixpkgs/pkgs/development/python-modules/css-html-js-minify/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

27 lines
691 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "css-html-js-minify";
version = "2.5.5";
format = "setuptools";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "4a9f11f7e0496f5284d12111f3ba4ff5ff2023d12f15d195c9c48bd97013746c";
};
doCheck = false; # Tests are useless and broken
pythonImportsCheck = [ "css_html_js_minify" ];
meta = with lib; {
description = "StandAlone Async cross-platform Minifier for the Web";
homepage = "https://github.com/juancarlospaco/css-html-js-minify";
license = with licenses; [ gpl3Plus lgpl3Plus mit ];
maintainers = with maintainers; [ FlorianFranzen ];
};
}