Files
nixpkgs/pkgs/development/python-modules/cssbeautifier/default.nix
T
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

49 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 ];
};
}