python.pkgs.yapf: move to separate expression

fixes #27379
This commit is contained in:
wisut hantanong
2017-07-15 16:53:43 +07:00
committed by Jörg Thalheim
parent 5529758791
commit a5d75f0f18
2 changed files with 21 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "yapf";
version = "0.11.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "14kb9gxw39zhvrijhp066b4bm6bgv35iw56c394y4dyczpha0dij";
};
meta = with stdenv.lib; {
description = "A formatter for Python code.";
homepage = "https://github.com/google/yapf";
license = licenses.asl20;
maintainers = with maintainers; [ siddharthist ];
};
}