Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 21 lines 577 B view raw
1{ lib, fetchPypi, buildPythonApplication, editorconfig, pytest, six }: 2 3buildPythonApplication rec { 4 pname = "jsbeautifier"; 5 version = "1.13.5"; 6 7 propagatedBuildInputs = [ six editorconfig ]; 8 checkInputs = [ pytest ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "4532a6bc85ba91ffc542b55d65cd13cedc971a934f26f51ed56d4c680b3fbe66"; 13 }; 14 15 meta = with lib; { 16 homepage = "http://jsbeautifier.org"; 17 description = "JavaScript unobfuscator and beautifier."; 18 license = licenses.mit; 19 maintainers = with maintainers; [ apeyroux ]; 20 }; 21}