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