nixpkgs/pkgs/development/python-modules/yapf/default.nix

20 lines
458 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "yapf";
2018-10-04 09:34:55 +01:00
version = "0.24.0";
src = fetchPypi {
inherit pname version;
2018-10-04 09:34:55 +01:00
sha256 = "0anwby0ydmyzcsgjc5dn1ryddwvii4dq61vck447q0n96npnzfyf";
};
meta = with stdenv.lib; {
description = "A formatter for Python code.";
homepage = "https://github.com/google/yapf";
license = licenses.asl20;
maintainers = with maintainers; [ siddharthist ];
};
}