nixpkgs/pkgs/development/python-modules/yapf/default.nix
R. RyanTM ff2ef48484 python37Packages.yapf: 0.24.0 -> 0.25.0 (#52071)
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
2018-12-14 20:20:00 +01:00

20 lines
458 B
Nix

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