jsbeautifier: 1.6.4 -> 1.6.14 (#25947)
* jsbeautifier: 1.6.4 -> 1.6.14 * pythonPackages.jsbeautifier: move to python-modules
This commit is contained in:
parent
7d97051f72
commit
f1edefed50
21
pkgs/development/python-modules/jsbeautifier/default.nix
Normal file
21
pkgs/development/python-modules/jsbeautifier/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{ stdenv, fetchurl, buildPythonApplication, EditorConfig, pytest, six }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
name = "jsbeautifier-1.6.14";
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
buildInputs = [ EditorConfig pytest ];
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://pypi/j/jsbeautifier/${name}.tar.gz";
|
||||||
|
sha256 = "50b2af556aa1da7283a6a92eaa699668312cb91f2ba6b78a4422b1d42af964a2";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://jsbeautifier.org";
|
||||||
|
description = "JavaScript unobfuscator and beautifier.";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ apeyroux ];
|
||||||
|
};
|
||||||
|
}
|
@ -7643,25 +7643,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
jsbeautifier = buildPythonApplication rec {
|
jsbeautifier = callPackage ../development/python-modules/jsbeautifier {};
|
||||||
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 {
|
jug = buildPythonPackage rec {
|
||||||
version = "1.4.0";
|
version = "1.4.0";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user