Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 21 lines 577 B view raw
1{ lib, fetchPypi, buildPythonApplication, editorconfig, pytest, six }: 2 3buildPythonApplication rec { 4 pname = "jsbeautifier"; 5 version = "1.10.0"; 6 7 propagatedBuildInputs = [ six editorconfig ]; 8 checkInputs = [ pytest ]; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1e389572ade865173605471e98df4002f4b6e5235121c13f1e4497a3eac69108"; 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}