depot/third_party/nixpkgs/pkgs/development/python-modules/cssbeautifier/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

47 lines
877 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";
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 ];
};
}