pythonPackages.dask-gateway: init at 0.8.0

This commit is contained in:
Chris Ostrouchov 2020-08-04 20:59:41 -04:00 committed by Jon
parent 7a18043f65
commit 050ab81b07
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, dask
, distributed
}:
buildPythonPackage rec {
pname = "dask-gateway";
# update dask-gateway lock step with dask-gateway-server
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "519818f3598ddd726882c5a6bf7053941613d8517b80e8a2c28467e30d57da9b";
};
propagatedBuildInputs = [
aiohttp
dask
distributed
];
# tests requires cluster for testing
doCheck = false;
pythonImportsCheck = [ "dask_gateway" ];
meta = with lib; {
description = "A client library for interacting with a dask-gateway server";
homepage = "https://gateway.dask.org/";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}

View file

@ -2739,6 +2739,8 @@ in {
dask = callPackage ../development/python-modules/dask { };
dask-gateway = callPackage ../development/python-modules/dask-gateway { };
dask-glm = callPackage ../development/python-modules/dask-glm { };
dask-image = callPackage ../development/python-modules/dask-image { };