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-+YCHIfNq8E2rXO8b91Q1D21dVzNWnJZIKZeY4AETa7s=";
23 sourceRoot = "${src.name}/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; [ ];