nixpkgs/pkgs/development/python-modules/dockerspawner/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

42 lines
811 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
jupyterhub,
escapism,
docker,
}:
buildPythonPackage rec {
pname = "dockerspawner";
version = "13.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-POlTZ9luS9wQ/vt9w8VMfTEqGzg/DhfB45ePfvnyito=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
jupyterhub
escapism
docker
];
# tests require docker
doCheck = false;
pythonImportsCheck = [ "dockerspawner" ];
meta = with lib; {
description = "Custom spawner for Jupyterhub";
homepage = "https://github.com/jupyterhub/dockerspawner";
changelog = "https://github.com/jupyterhub/dockerspawner/blob/${version}/docs/source/changelog.md";
license = licenses.bsd3;
maintainers = [ ];
};
}