lol

python310Packages.cssbeautifier: init at 1.14.9

traxys df53ba2c d5597ff0

+37
+35
pkgs/development/python-modules/cssbeautifier/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , jsbeautifier 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "cssbeautifier"; 10 + version = "1.14.9"; 11 + format = "pyproject"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + hash = "sha256-LaQyRy9oFw64VK/5exaiRyH1CQ7javLjEZlZConn9x8="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + setuptools 20 + ]; 21 + 22 + propagatedBuildInputs = [ jsbeautifier ]; 23 + 24 + # has no tests 25 + doCheck = false; 26 + 27 + pythonImportsCheck = [ "cssbeautifier" ]; 28 + 29 + meta = with lib; { 30 + description = "CSS unobfuscator and beautifier"; 31 + homepage = "https://pypi.org/project/cssbeautifier/"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ traxys ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 2331 2331 2332 2332 csrmesh = callPackage ../development/python-modules/csrmesh { }; 2333 2333 2334 + cssbeautifier = callPackage ../development/python-modules/cssbeautifier { }; 2335 + 2334 2336 csscompressor = callPackage ../development/python-modules/csscompressor { }; 2335 2337 2336 2338 cssmin = callPackage ../development/python-modules/cssmin { };