Files
nixpkgs/pkgs/development/python-modules/dask-gateway-server/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

67 lines
1.2 KiB
Nix

{
lib,
aiohttp,
buildPythonPackage,
colorlog,
cryptography,
fetchFromGitHub,
go,
pykerberos,
pythonOlder,
skein,
sqlalchemy,
traitlets,
}:
buildPythonPackage rec {
pname = "dask-gateway-server";
version = "2023.9.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "dask";
repo = "dask-gateway";
rev = version;
hash = "sha256-hwNLcuFN6ItH5KhC2gDUsaZT7qTC48fPR/Qx6u8B1+M=";
};
sourceRoot = "${src.name}/${pname}";
nativeBuildInputs = [ go ];
propagatedBuildInputs = [
aiohttp
colorlog
cryptography
traitlets
];
optional-dependencies = {
kerberos = [ pykerberos ];
jobqueue = [ sqlalchemy ];
local = [ sqlalchemy ];
yarn = [
skein
sqlalchemy
];
};
preBuild = ''
export HOME=$(mktemp -d)
'';
# Tests requires cluster for testing
doCheck = false;
pythonImportsCheck = [ "dask_gateway_server" ];
meta = {
description = "Multi-tenant server for securely deploying and managing multiple Dask clusters";
homepage = "https://gateway.dask.org/";
license = lib.licenses.bsd3;
maintainers = [ ];
};
}