2019-04-05 12:56:45 -07:00
|
|
|
{ lib, fetchPypi, buildPythonApplication, EditorConfig, fetchpatch, pytest, six }:
|
2017-05-21 00:50:14 -07:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
2017-05-27 02:25:35 -07:00
|
|
|
pname = "jsbeautifier";
|
2019-04-05 13:02:01 -07:00
|
|
|
version = "1.9.1";
|
2017-05-21 00:50:14 -07:00
|
|
|
|
2019-04-05 13:02:01 -07:00
|
|
|
propagatedBuildInputs = [ six EditorConfig ];
|
|
|
|
checkInputs = [ pytest ];
|
2017-05-21 00:50:14 -07:00
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-05 13:02:01 -07:00
|
|
|
sha256 = "0q8ld072dkccssagjxyvc9633fb6ynflvz70924phgp3zxmim960";
|
2017-05-27 02:25:35 -07:00
|
|
|
};
|
2017-05-21 00:50:14 -07:00
|
|
|
|
2019-04-05 12:56:45 -07:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/beautify-web/js-beautify/commit/78e35a11cbb805fc044241d6465800ee2bd57ebc.patch";
|
|
|
|
sha256 = "1ah7nshk96yljy37i20v4fga834dix9cdbhkdc3flfm4904n4523";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
patchFlags = [ "-p2" ];
|
|
|
|
|
2018-06-23 06:27:58 -07:00
|
|
|
meta = with lib; {
|
2017-05-27 02:25:35 -07:00
|
|
|
homepage = "http://jsbeautifier.org";
|
|
|
|
description = "JavaScript unobfuscator and beautifier.";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ apeyroux ];
|
|
|
|
};
|
|
|
|
}
|