summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:19:15 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-09 21:19:20 +0000
commit45943e0979457c63c8678b41f5ae5f80c770d55a (patch)
treed5525258dbbe9ec026e01d8ee26d407fd6b745d0 /gnu/packages
parent5754f6a0976fb06d9bf1702b9b98e991d7b4dbc0 (diff)
gnu: python-munch: Update to 4.0.0.
* gnu/packages/python-xyz.scm (python-munch): Update to 4.0.0. [build-system]: Swap to pyproject-build-system. [propagated-inputs]: Remove python-six. [native-inputs]: Remove python-pbr; add python-astroid, python-setuptools, and python-wheel. Change-Id: Ie2c8698ecac7990c70f479b8e35dc138ce0343bb
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm23
1 files changed, 13 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3739e055caf..a1b47ca5f7f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9542,17 +9542,20 @@ methods is arguably lacking. This package provides drop-in wrappers
9542(define-public python-munch 9542(define-public python-munch
9543 (package 9543 (package
9544 (name "python-munch") 9544 (name "python-munch")
9545 (version "2.5.0") 9545 (version "4.0.0")
9546 (source 9546 (source
9547 (origin 9547 (origin
9548 (method url-fetch) 9548 (method url-fetch)
9549 (uri (pypi-uri "munch" version)) 9549 (uri (pypi-uri "munch" version))
9550 (sha256 9550 (sha256
9551 (base32 9551 (base32
9552 "1lnvlic9g68hcmgdnv5bzp0nx2bf1kjclj54gx0s7nyl4ipmywrd")))) 9552 "0d928bdzm0d9s9f058xa72pywps2zjdgvhrp9rm22qqj8r8v2b2l"))))
9553 (build-system python-build-system) 9553 (build-system pyproject-build-system)
9554 (native-inputs (list python-pbr python-pytest)) 9554 (native-inputs
9555 (propagated-inputs (list python-six)) 9555 (list python-astroid
9556 python-pytest
9557 python-setuptools
9558 python-wheel))
9556 (home-page "https://github.com/Infinidat/munch") 9559 (home-page "https://github.com/Infinidat/munch")
9557 (synopsis "Dot-accessible dictionary") 9560 (synopsis "Dot-accessible dictionary")
9558 (description "Munch is a dot-accessible dictionary similar to JavaScript 9561 (description "Munch is a dot-accessible dictionary similar to JavaScript