summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-04-24 15:41:28 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-24 15:41:36 +0100
commit448bec425fd44c3f3fb485712ff48de06b9449a4 (patch)
tree86c56db66e2653d165662942d039738983f62ff6 /gnu
parent323af5817a0d45ef5553da03c40948080aa7c48f (diff)
gnu: python-jupyter-kernel-test: Update to 0.7.0.
* gnu/packages/jupyter.scm (python-jupyter-kernel-test): Update to 0.7.0. [build-system]: Switch to pyproject. [arguments] <phases>: Keep 'build; use default 'install and 'check. [propagated-inputs]: Remove python-jupyter-kernel-mgmt and python-jupyter-protocol; add python-jupyter-client. [native-inputs]: Add python-hatchling and python-ipykernel. Change-Id: I5ae25096b4f4ff05e0df0a75282c271c3dc36416
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/jupyter.scm54
1 files changed, 24 insertions, 30 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 925987bc26a..5c95d6a1446 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -238,38 +238,32 @@ launching and using Jupyter kernels.")
238(define-public python-jupyter-kernel-test 238(define-public python-jupyter-kernel-test
239 (package 239 (package
240 (name "python-jupyter-kernel-test") 240 (name "python-jupyter-kernel-test")
241 (version "0.3") 241 (version "0.7.0")
242 (home-page "https://github.com/jupyter/jupyter_kernel_test") 242 (source
243 (source (origin 243 (origin
244 ;; PyPI has a ".whl" file but not a proper source release. 244 (method git-fetch)
245 ;; Thus, fetch code from Git. 245 (uri (git-reference
246 (method git-fetch) 246 (url "https://github.com/jupyter/jupyter_kernel_test")
247 (uri (git-reference (url home-page) (commit version))) 247 (commit (string-append "v" version))))
248 (file-name (git-file-name name version)) 248 (file-name (git-file-name name version))
249 (sha256 249 (sha256
250 (base32 250 (base32 "1xp8496kr79rvb5b2m7kgwzdppfcmn4mqc0anjkqk7d91hr1wssf"))))
251 "00iy74i4i8is6axb9vlsm0b9wxkvyyxnbl8r0i4gaj3xd788jm83")))) 251 (build-system pyproject-build-system)
252 (build-system python-build-system)
253 (arguments 252 (arguments
254 ;; The repo doesn't contain a "setup.py" file so install files manually. 253 (list
255 '(#:phases (modify-phases %standard-phases 254 #:phases
256 (delete 'build) 255 #~(modify-phases %standard-phases
257 (delete 'check) 256 (replace 'check
258 (replace 'install 257 (lambda* (#:key tests? #:allow-other-keys)
259 (lambda* (#:key inputs outputs #:allow-other-keys) 258 (when tests?
260 (let* ((out (assoc-ref outputs "out")) 259 (invoke "python" "-m" "unittest" "-v")))))))
261 (version (python-version (assoc-ref inputs "python"))) 260 (native-inputs
262 (pydir (string-append out "/lib/python" 261 (list python-hatchling
263 version "/site-packages/" 262 python-ipykernel))
264 "jupyter_kernel_test")))
265 (for-each (lambda (file)
266 (install-file file pydir))
267 (find-files "jupyter_kernel_test"
268 "\\.py$"))
269 #t))))))
270 (propagated-inputs 263 (propagated-inputs
271 (list python-jupyter-kernel-mgmt python-jupyter-protocol 264 (list python-jsonschema
272 python-jsonschema)) 265 python-jupyter-client))
266 (home-page "https://github.com/jupyter/jupyter_kernel_test")
273 (synopsis "Test Jupyter kernels") 267 (synopsis "Test Jupyter kernels")
274 (description 268 (description
275 "@code{jupyter_kernel_test} is a tool for testing Jupyter kernels. It 269 "@code{jupyter_kernel_test} is a tool for testing Jupyter kernels. It