pythonPackages.dask-gateway: init at 0.8.0
This commit is contained in:
parent
7a18043f65
commit
050ab81b07
2 changed files with 38 additions and 0 deletions
36
pkgs/development/python-modules/dask-gateway/default.nix
Normal file
36
pkgs/development/python-modules/dask-gateway/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue