Merge pull request #166159 from r-ryantm/auto-update/python310Packages.jsbeautifier

python310Packages.jsbeautifier: 1.14.0 -> 1.14.1
This commit is contained in:
Fabian Affolter 2022-03-29 10:45:03 +02:00 committed by GitHub
commit eef825d93d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,21 +1,45 @@
{ lib, fetchPypi, buildPythonApplication, editorconfig, pytest, six }:
{ lib
, fetchPypi
, buildPythonApplication
, editorconfig
, pytestCheckHook
, pythonOlder
, six
}:
buildPythonApplication rec {
pname = "jsbeautifier";
version = "1.14.0";
version = "1.14.1";
format = "setuptools";
propagatedBuildInputs = [ six editorconfig ];
checkInputs = [ pytest ];
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "84fdb008d8af89619269a6aca702288b48f837a99427a0f529aa57ecfb36ee3c";
hash = "sha256-ZfT3dLDkywIutJmbRc1ndi92Qnxe80CCq6VLwdjvI+s=";
};
propagatedBuildInputs = [
editorconfig
six
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"jsbeautifier"
];
pytestFlagsArray = [
"jsbeautifier/tests/testindentation.py"
];
meta = with lib; {
homepage = "http://jsbeautifier.org";
description = "JavaScript unobfuscator and beautifier.";
license = licenses.mit;
description = "JavaScript unobfuscator and beautifier";
homepage = "http://jsbeautifier.org";
license = licenses.mit;
maintainers = with maintainers; [ apeyroux ];
};
}