linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / batchspawner / default.nix
blob2acfa5ecd171bde89bb1932d5f21ae758ca804b6
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , jupyterhub
5 , isPy27
6 }:
8 buildPythonPackage rec {
9   pname = "batchspawner";
10   version = "1.0.1";
11   disabled = isPy27;
13   src = fetchFromGitHub {
14     owner = "jupyterhub";
15     repo = "batchspawner";
16     rev = "v${version}";
17     sha256 = "0vqf3qc2yp52441s6xwgixgl37976qqgpd9sshbgh924j314v1yv";
18   };
20   propagatedBuildInputs = [
21     jupyterhub
22   ];
24   # tests require a job scheduler e.g. slurm, pbs, etc.
25   doCheck = false;
27   pythonImportsCheck = [ "batchspawner" ];
29   meta = with lib; {
30     description = "A spawner for Jupyterhub to spawn notebooks using batch resource managers";
31     homepage = "https://jupyter.org";
32     license = licenses.bsd3;
33     maintainers = [ maintainers.costrouc ];
34   };