10 buildPythonPackage rec {
11 pname = "dask-gateway";
12 # update dask-gateway lock step with dask-gateway-server
16 src = fetchFromGitHub {
18 repo = "dask-gateway";
19 rev = "refs/tags/${version}";
20 hash = "sha256-PsagZdEPpeuZH9hFL98xB5z6zOdd4Cx/skGQ0eOYkCA=";
23 sourceRoot = "source/dask-gateway";
25 nativeBuildInputs = [ setuptools ];
27 propagatedBuildInputs = [
33 # tests requires cluster for testing
36 pythonImportsCheck = [ "dask_gateway" ];
39 description = "A client library for interacting with a dask-gateway server";
40 homepage = "https://gateway.dask.org/";
41 license = licenses.bsd3;
42 maintainers = with maintainers; [ costrouc ];