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

21 lines
502 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "yapf";
2017-10-25 21:04:35 +03:00
version = "0.19.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-10-25 21:04:35 +03:00
sha256 = "701b076a4916e3cfbba345e0297dcd54a02fd0fdcae1f43346f8a043c3bbd052";
};
meta = with stdenv.lib; {
description = "A formatter for Python code.";
homepage = "https://github.com/google/yapf";
license = licenses.asl20;
maintainers = with maintainers; [ siddharthist ];
};
}