3
0
Fork 0
forked from mirrors/nixpkgs

jsbeautifier: fix alphabetical order

This commit is contained in:
Alexandre Peyroux 2016-10-03 20:22:39 +02:00
parent 78ec797215
commit c072feb377

View file

@ -7390,6 +7390,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;
};
};
jug = buildPythonPackage rec {
version = "1.2.2";
name = "jug-${version}";
@ -7415,25 +7434,6 @@ 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";