nixpkgs/pkgs/development/python-modules/yapf/default.nix
2018-02-18 20:07:43 +01:00

21 lines
502 B
Nix

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "yapf";
version = "0.20.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "7f5efdb7edf0318b91e53721d934580a77153e24a222f52f6e1c3b7629aead43";
};
meta = with stdenv.lib; {
description = "A formatter for Python code.";
homepage = "https://github.com/google/yapf";
license = licenses.asl20;
maintainers = with maintainers; [ siddharthist ];
};
}