56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
setuptools,
|
||
|
wheel,
|
||
|
jinja2,
|
||
|
jupyterhub,
|
||
|
pythonOlder,
|
||
|
pytest-asyncio,
|
||
|
pytest-cov-stub,
|
||
|
pytestCheckHook,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "batchspawner";
|
||
|
version = "1.3.0";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jupyterhub";
|
||
|
repo = "batchspawner";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-Z7kB8b7s11wokTachLI/N+bdUV+FfCRTemL1KYQpzio=";
|
||
|
};
|
||
|
|
||
|
build-system = [
|
||
|
setuptools
|
||
|
wheel
|
||
|
];
|
||
|
|
||
|
dependencies = [
|
||
|
jinja2
|
||
|
jupyterhub
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
pytest-asyncio
|
||
|
pytest-cov-stub
|
||
|
pytestCheckHook
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "batchspawner" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Spawner for Jupyterhub to spawn notebooks using batch resource managers";
|
||
|
mainProgram = "batchspawner-singleuser";
|
||
|
homepage = "https://github.com/jupyterhub/batchspawner";
|
||
|
changelog = "https://github.com/jupyterhub/batchspawner/blob/v${version}/CHANGELOG.md";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = [ ];
|
||
|
};
|
||
|
}
|