biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / cssbeautifier / default.nix
blobebb76a8346d3b13afed06ff75c269fdd63294f41
2   lib,
3   buildPythonPackage,
4   editorconfig,
5   fetchPypi,
6   jsbeautifier,
7   pythonOlder,
8   setuptools,
9   six,
12 buildPythonPackage rec {
13   pname = "cssbeautifier";
14   version = "1.15.1";
15   pyproject = true;
17   disabled = pythonOlder "3.7";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-n3BkNirt1VnFXu7Pa2vtZeBfM0iNy+OQRPBAPCbhwAY=";
22   };
24   nativeBuildInputs = [ setuptools ];
26   propagatedBuildInputs = [
27     editorconfig
28     jsbeautifier
29     six
30   ];
32   # Module has no tests
33   doCheck = false;
35   pythonImportsCheck = [ "cssbeautifier" ];
37   meta = with lib; {
38     description = "CSS unobfuscator and beautifier";
39     mainProgram = "css-beautify";
40     homepage = "https://github.com/beautifier/js-beautify";
41     changelog = "https://github.com/beautifier/js-beautify/blob/v${version}/CHANGELOG.md";
42     license = licenses.mit;
43     maintainers = with maintainers; [ traxys ];
44   };