jsbeautifier: init 1.6.4

This commit is contained in:
Alexandre Peyroux 2016-10-03 20:18:12 +02:00
parent ab55fabd0c
commit 78ec797215

View File

@ -7415,6 +7415,25 @@ in modules // {
};
};
jsbeautifier = buildPythonApplication rec {
name = "jsbeautifier-1.6.4";
propagatedBuildInputs = with self; [ six ];
buildInputs = with self; [ EditorConfig pytest six ];
src = pkgs.fetchurl {
url = "mirror://pypi/j/jsbeautifier/${name}.tar.gz";
sha256 = "074n8f4ncz5pf0jkkf6i6by30qnaj5208sszaf9p86kgdigcdaf8";
};
meta = {
homepage = "http://jsbeautifier.org";
description = "JavaScript unobfuscator and beautifier.";
license = stdenv.lib.licenses.mit;
};
};
jsonpatch = buildPythonPackage rec {
name = "jsonpatch-1.11";