forked from mirrors/nixpkgs
22 lines
565 B
Nix
22 lines
565 B
Nix
{ lib, fetchPypi, buildPythonApplication, editorconfig, pytest, six }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "jsbeautifier";
|
|
version = "1.10.3";
|
|
|
|
propagatedBuildInputs = [ six editorconfig ];
|
|
checkInputs = [ pytest ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0aaxi56qm2wmccsdj4v1lc158625c2g6ikqq950yv43i0pyyi3lp";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "http://jsbeautifier.org";
|
|
description = "JavaScript unobfuscator and beautifier.";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ apeyroux ];
|
|
};
|
|
}
|