summary refs log blame commit diff
path: root/pkgs/development/python-modules/yapf/default.nix
blob: 05913ab61c5eb27c44925bd6854951780c3ac13c (plain) (tree)
1
2
3
4
5
6
7
8
9



                                          
                     



                               
                                                                                









                                                     
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "yapf";
  version = "0.20.1";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "bd19f246be7193ad2acdc04702b92315f1ae28d49c82f6671afdeefe9d32f468";
  };

  meta = with stdenv.lib; {
    description = "A formatter for Python code.";
    homepage    = "https://github.com/google/yapf";
    license     = licenses.asl20;
    maintainers = with maintainers; [ siddharthist ];
  };

}