Merge pull request #17335 from siddharthist/yapf/0.11.0
yapf: init at 0.11.0
This commit is contained in:
commit
00278ef685
|
@ -28805,4 +28805,21 @@ in modules // {
|
|||
--prefix PYTHONPATH : "$PYTHONPATH"
|
||||
'';
|
||||
};
|
||||
|
||||
yapf = buildPythonPackage rec {
|
||||
name = "yapf-${version}";
|
||||
version = "0.11.0";
|
||||
|
||||
meta = {
|
||||
description = "A formatter for Python code.";
|
||||
homepage = "https://github.com/google/yapf";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ siddharthist ];
|
||||
};
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/y/yapf/${name}.tar.gz";
|
||||
sha256 = "14kb9gxw39zhvrijhp066b4bm6bgv35iw56c394y4dyczpha0dij";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue