python310Packages.cssbeautifier: init at 1.14.9
This commit is contained in:
parent
d5597ff02e
commit
df53ba2ca0
35
pkgs/development/python-modules/cssbeautifier/default.nix
Normal file
35
pkgs/development/python-modules/cssbeautifier/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2331,6 +2331,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
csrmesh = callPackage ../development/python-modules/csrmesh { };
|
csrmesh = callPackage ../development/python-modules/csrmesh { };
|
||||||
|
|
||||||
|
cssbeautifier = callPackage ../development/python-modules/cssbeautifier { };
|
||||||
|
|
||||||
csscompressor = callPackage ../development/python-modules/csscompressor { };
|
csscompressor = callPackage ../development/python-modules/csscompressor { };
|
||||||
|
|
||||||
cssmin = callPackage ../development/python-modules/cssmin { };
|
cssmin = callPackage ../development/python-modules/cssmin { };
|
||||||
|
Loading…
Reference in New Issue
Block a user