summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 15:04:29 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 15:05:16 +0100
commit8d039272c00e714b1fc8ca2e6c80f9aba63d2fff (patch)
treefdc9e8fb36154157afc0de625e9c719ce1f87236
parent4ea232db4abe69c1851dc1e8b99dc38b251dcc00 (diff)
gnu: python-param: Update to 2.3.3.
* gnu/packages/python-xyz.scm (python-param): Update to 2.3.3. [source]: Switch to git-fetch. [native-inputs]: Remove python-ipython and python-pytest-xdist; add python-ipython-minimal. Change-Id: I4af32ce74056aa1654053ef699e115a91e8ae52a
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 12 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6f50d25491..2ad48f1ca9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31672,19 +31672,25 @@ applications with variable CPU loads).")
(define-public python-param
(package
(name "python-param")
- (version "2.1.0")
+ (version "2.3.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "param" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/holoviz/param")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "07z7az7xg8pzjrmaf928is7n6siw9v9nxfmf0a5vgqj7nl40pcx7"))))
+ (base32 "0cs550plb10ghhn0w5bdnq0i0bkh12996kv3lfibsbzy4dcc7qc7"))))
(build-system pyproject-build-system)
+ ;; tests: 1448 passed, 5 skipped, 2 xfailed
(native-inputs
+ ;; Project does not require any dependencies, all of the listed
+ ;; native-inputs are for build/test only.
(list python-cloudpickle
- python-hatchling
python-hatch-vcs
- python-ipython
+ python-hatchling
+ python-ipython-minimal
python-jsonschema
python-nbval
python-nest-asyncio
@@ -31695,7 +31701,6 @@ applications with variable CPU loads).")
python-pyarrow
python-pytest
python-pytest-asyncio
- python-pytest-xdist
python-tables
python-xlrd))
(home-page "https://param.holoviz.org/")