summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-05 23:55:46 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-05 23:58:09 +0000
commit426642229f3d0862bc3900d8ee071a4f5504cec6 (patch)
treef63ae7001d029230266d336491d6915da4168613 /gnu
parentb0ca5b660614b12b4c9c86bb163b75ffd5e7233c (diff)
gnu: python-box: Update to 7.3.2.
* gnu/packages/python-xyz.scm (python-box): Update to 7.3.2. [arguments] <test-flags>: Skip one test. [propagated-inputs]: Remove python-tomli. [native-inputs]: Remove python-cython and python-wheel. Change-Id: If9a2f7e07dfcb57e0819e1fd72a82c25bf34361f
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5759e8184a3..64e7222ae9e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34481,24 +34481,27 @@ and powerful way to handle real-world data, featuring:
(define-public python-box
(package
(name "python-box")
- (version "7.1.1")
+ (version "7.3.2")
(source
- ;; The PyPI tarball does not contain all test files.
(origin
(method git-fetch)
(uri
(git-reference
- (url "https://github.com/cdgriffith/Box")
- (commit version)))
+ (url "https://github.com/cdgriffith/Box")
+ (commit version)))
(file-name (git-file-name name version))
(sha256
- (base32
- "1v8s6wji17fh87nvamzysvxi8f51h6szh6h6dxvids56gg5zc553"))))
+ (base32 "0nr8cajrhdwxm3ac5gclajqck7xywlpqnwvff072va5ki0if6lv9"))))
(build-system pyproject-build-system)
- (propagated-inputs
- (list python-msgpack python-ruamel.yaml python-tomli python-tomli-w))
+ (arguments
+ (list #:test-flags #~(list "-k" "not test_to_yaml_ruamel")))
(native-inputs
- (list python-cython python-pytest python-setuptools python-wheel))
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-msgpack
+ python-ruamel.yaml
+ python-tomli-w))
(home-page "https://github.com/cdgriffith/Box")
(synopsis "Advanced Python dictionaries with dot notation access")
(description