mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
updating python-batchspawner
This commit is contained in:
parent
7df40cc44f
commit
f01dea83e0
1 changed files with 34 additions and 26 deletions
|
@ -1,11 +1,13 @@
|
||||||
(define-module (glicid packages jupyter)
|
(define-module (glicid packages jupyter)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (guix-science packages jupyter)
|
#:use-module (guix-science packages jupyter)
|
||||||
)
|
)
|
||||||
|
|
||||||
(define-public python-batchspawner
|
(define-public python-batchspawner
|
||||||
(package
|
(package
|
||||||
|
@ -14,18 +16,24 @@
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "batchspawner" version))
|
(uri (pypi-uri "batchspawner" version))
|
||||||
(sha256
|
(sha256 (base32 "089f18s79kb2983wy4vb3vcwynmw7pzxmv0jwfhjgxd3yfs4p4mi"))))
|
||||||
(base32
|
|
||||||
"089f18s79kb2983wy4vb3vcwynmw7pzxmv0jwfhjgxd3yfs4p4mi"))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs (list python-async-generator python-jinja2
|
(propagated-inputs (list python-async-generator python-jinja2 python-jupyterhub python-pytest))
|
||||||
python-jupyterhub))
|
|
||||||
(home-page "http://jupyter.org")
|
(home-page "http://jupyter.org")
|
||||||
(synopsis
|
(synopsis "Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource managers.")
|
||||||
"Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource managers.")
|
(description "Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource managers.")
|
||||||
(description
|
|
||||||
"Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource
|
|
||||||
managers.")
|
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public python-batchspawner-git
|
||||||
|
(package
|
||||||
|
(inherit python-batchspawner)
|
||||||
|
(name "python-batchspawner")
|
||||||
|
(version "d5f9a0b")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jupyterhub/batchspawner")
|
||||||
|
(commit version)))
|
||||||
|
(sha256 (base32 "03z1ww5qlwjn3xs3lf9b78yrqq7kd6rd5bh2kn377md391hz09f7"))))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue