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