pythonPackages.dask: format

This commit is contained in:
Sandro Jäckel 2021-03-07 16:12:18 +01:00
parent 61b42c2d0f
commit c34a2136cf
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -17,7 +17,6 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dask"; pname = "dask";
version = "2021.03.0"; version = "2021.03.0";
disabled = pythonOlder "3.5"; disabled = pythonOlder "3.5";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -64,11 +63,11 @@ buildPythonPackage rec {
"test_2args_with_array[pandas1-darray1-ldexp]" # flaky "test_2args_with_array[pandas1-darray1-ldexp]" # flaky
]; ];
meta = { meta = with lib; {
description = "Minimal task scheduling abstraction"; description = "Minimal task scheduling abstraction";
homepage = "https://dask.org/"; homepage = "https://dask.org/";
changelog = "https://docs.dask.org/en/latest/changelog.html"; changelog = "https://docs.dask.org/en/latest/changelog.html";
license = lib.licenses.bsd3; license = licenses.bsd3;
maintainers = with lib.maintainers; [ fridh ]; maintainers = with maintainers; [ fridh ];
}; };
} }