Merge pull request #17335 from siddharthist/yapf/0.11.0
yapf: init at 0.11.0
This commit is contained in:
commit
00278ef685
|
@ -7962,9 +7962,9 @@ in modules // {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pytools = buildPythonPackage rec {
|
pytools = buildPythonPackage rec {
|
||||||
name = "pytools-${version}";
|
name = "pytools-${version}";
|
||||||
version = "2016.2.1";
|
version = "2016.2.1";
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "inducer";
|
owner = "inducer";
|
||||||
|
@ -7983,7 +7983,7 @@ in modules // {
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://github.com/inducer/pytools/;
|
homepage = https://github.com/inducer/pytools/;
|
||||||
description = "Miscellaneous Python lifesavers.";
|
description = "Miscellaneous Python lifesavers.";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ artuuge ];
|
maintainers = with maintainers; [ artuuge ];
|
||||||
|
@ -13957,7 +13957,7 @@ in modules // {
|
||||||
nipy = buildPythonPackage rec {
|
nipy = buildPythonPackage rec {
|
||||||
version = "0.4.0";
|
version = "0.4.0";
|
||||||
name = "nipy-${version}";
|
name = "nipy-${version}";
|
||||||
|
|
||||||
disabled = pythonOlder "2.6";
|
disabled = pythonOlder "2.6";
|
||||||
|
|
||||||
checkPhase = '' # wants to be run in a different directory
|
checkPhase = '' # wants to be run in a different directory
|
||||||
|
@ -28805,4 +28805,21 @@ in modules // {
|
||||||
--prefix PYTHONPATH : "$PYTHONPATH"
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
yapf = buildPythonPackage rec {
|
||||||
|
name = "yapf-${version}";
|
||||||
|
version = "0.11.0";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A formatter for Python code.";
|
||||||
|
homepage = "https://github.com/google/yapf";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ siddharthist ];
|
||||||
|
};
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "mirror://pypi/y/yapf/${name}.tar.gz";
|
||||||
|
sha256 = "14kb9gxw39zhvrijhp066b4bm6bgv35iw56c394y4dyczpha0dij";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue