tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python310Packages.cssbeautifier: init at 1.14.9
traxys
2 years ago
df53ba2c
d5597ff0
+37
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
cssbeautifier
default.nix
top-level
python-packages.nix
+35
pkgs/development/python-modules/cssbeautifier/default.nix
reviewed
···
1
1
+
{ lib
2
2
+
, buildPythonPackage
3
3
+
, fetchPypi
4
4
+
, setuptools
5
5
+
, jsbeautifier
6
6
+
}:
7
7
+
8
8
+
buildPythonPackage rec {
9
9
+
pname = "cssbeautifier";
10
10
+
version = "1.14.9";
11
11
+
format = "pyproject";
12
12
+
13
13
+
src = fetchPypi {
14
14
+
inherit pname version;
15
15
+
hash = "sha256-LaQyRy9oFw64VK/5exaiRyH1CQ7javLjEZlZConn9x8=";
16
16
+
};
17
17
+
18
18
+
nativeBuildInputs = [
19
19
+
setuptools
20
20
+
];
21
21
+
22
22
+
propagatedBuildInputs = [ jsbeautifier ];
23
23
+
24
24
+
# has no tests
25
25
+
doCheck = false;
26
26
+
27
27
+
pythonImportsCheck = [ "cssbeautifier" ];
28
28
+
29
29
+
meta = with lib; {
30
30
+
description = "CSS unobfuscator and beautifier";
31
31
+
homepage = "https://pypi.org/project/cssbeautifier/";
32
32
+
license = licenses.mit;
33
33
+
maintainers = with maintainers; [ traxys ];
34
34
+
};
35
35
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
2331
2331
2332
2332
csrmesh = callPackage ../development/python-modules/csrmesh { };
2333
2333
2334
2334
+
cssbeautifier = callPackage ../development/python-modules/cssbeautifier { };
2335
2335
+
2334
2336
csscompressor = callPackage ../development/python-modules/csscompressor { };
2335
2337
2336
2338
cssmin = callPackage ../development/python-modules/cssmin { };