Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 470 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "yapf"; 5 version = "0.30.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "3000abee4c28daebad55da6c85f3cd07b8062ce48e2e9943c8da1b9667d48427"; 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}