Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 19 lines 458 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "yapf"; 5 version = "0.28.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "06x409cgr5im9cppzypj1kqy1fsry906vn5slv7i9hd7fshvd53g"; 10 }; 11 12 meta = with stdenv.lib; { 13 description = "A formatter for Python code."; 14 homepage = "https://github.com/google/yapf"; 15 license = licenses.asl20; 16 maintainers = with maintainers; [ siddharthist ]; 17 }; 18 19}