python310Packages.cssbeautifier: init at 1.14.9

This commit is contained in:
traxys 2023-08-19 10:30:30 +02:00
parent d5597ff02e
commit df53ba2ca0
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,35 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, jsbeautifier
}:
buildPythonPackage rec {
pname = "cssbeautifier";
version = "1.14.9";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-LaQyRy9oFw64VK/5exaiRyH1CQ7javLjEZlZConn9x8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ jsbeautifier ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "cssbeautifier" ];
meta = with lib; {
description = "CSS unobfuscator and beautifier";
homepage = "https://pypi.org/project/cssbeautifier/";
license = licenses.mit;
maintainers = with maintainers; [ traxys ];
};
}

View File

@ -2331,6 +2331,8 @@ self: super: with self; {
csrmesh = callPackage ../development/python-modules/csrmesh { };
cssbeautifier = callPackage ../development/python-modules/cssbeautifier { };
csscompressor = callPackage ../development/python-modules/csscompressor { };
cssmin = callPackage ../development/python-modules/cssmin { };