depot/third_party/nixpkgs/pkgs/development/python-modules/cssbeautifier/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

48 lines
911 B
Nix

{ lib
, buildPythonPackage
, editorconfig
, fetchPypi
, jsbeautifier
, pythonOlder
, setuptools
, six
}:
buildPythonPackage rec {
pname = "cssbeautifier";
version = "1.15.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-n3BkNirt1VnFXu7Pa2vtZeBfM0iNy+OQRPBAPCbhwAY=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
editorconfig
jsbeautifier
six
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"cssbeautifier"
];
meta = with lib; {
description = "CSS unobfuscator and beautifier";
mainProgram = "css-beautify";
homepage = "https://github.com/beautifier/js-beautify";
changelog = "https://github.com/beautifier/js-beautify/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ traxys ];
};
}