nixpkgs/pkgs/development/python-modules/yapf/default.nix
R. RyanTM 8bdcef1e96 python37Packages.yapf: 0.26.0 -> 0.27.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-yapf/versions
2019-04-16 00:21:45 -07:00

20 lines
458 B
Nix

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