Merge pull request #19206 from apeyroux/init/jsbeautifier

jsbeautifier: init 1.6.4
This commit is contained in:
Jörg Thalheim 2016-10-03 21:52:45 +02:00 committed by GitHub
commit f12fcfebe2

View File

@ -7390,6 +7390,26 @@ 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;
maintainers = with maintainers; [ apeyroux ];
};
};
jug = buildPythonPackage rec {
version = "1.2.2";
name = "jug-${version}";