summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-16 10:41:44 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:14 +0100
commit3a56140051d5c295d7bc3b89056add63c9e15a5d (patch)
tree73c962fd47c2b53c127bdf13638b71ab7486d64f /gnu/packages/python-science.scm
parent36c4ad11c873d983e6b6a01d837c5a4715d0881c (diff)
gnu: Add python-dask-gateway.
* gnu/packages/python-science.scm (python-dask-gateway): New variable. Change-Id: I1b466e0d41d8d09c3b12829011b4e92acd0782e9
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm39
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index b201d5dcf78..29c1e9358e5 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -996,6 +996,45 @@ larger-than-memory or distributed environments. These parallel collections
996run on top of the dynamic task schedulers.") 996run on top of the dynamic task schedulers.")
997 (license license:bsd-3))) 997 (license license:bsd-3)))
998 998
999(define-public python-dask-gateway
1000 (package
1001 (name "python-dask-gateway")
1002 (version "2026.3.0")
1003 (source
1004 (origin
1005 (method git-fetch)
1006 (uri (git-reference
1007 (url "https://github.com/dask/dask-gateway")
1008 (commit version)))
1009 (file-name (git-file-name name version))
1010 (sha256
1011 (base32 "030693nl1rbsc9mpbny4hvx4rp44gw9cq242jwc6m97rj0n0cb5d"))))
1012 (build-system pyproject-build-system)
1013 (arguments
1014 (list
1015 #:tests? #f ;no tests
1016 #:phases
1017 #~(modify-phases %standard-phases
1018 (add-after 'unpack 'chdir
1019 (lambda _
1020 (chdir "dask-gateway"))))))
1021 (native-inputs
1022 (list python-hatchling
1023 python-pytest))
1024 (propagated-inputs
1025 (list python-aiohttp
1026 python-click
1027 python-dask
1028 python-distributed
1029 python-pyyaml
1030 python-tornado))
1031 (home-page "https://gateway.dask.org/")
1032 (synopsis "Client library for interacting with a dask-gateway server")
1033 (description
1034 "This package provides a client library for interacting with a
1035dask-gateway server.")
1036 (license license:bsd-3)))
1037
999(define-public python-dask-image 1038(define-public python-dask-image
1000 (package 1039 (package
1001 (name "python-dask-image") 1040 (name "python-dask-image")