gnu: python-immutabledict: Update to 4.2.0.

* gnu/packages/python-xyz.scm (python-immutabledict): Update to 4.2.0.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-poetry-core.

Change-Id: Ifc3499f6e01efefdcb58aadcae87bbb5a0295d46
This commit is contained in:
Vinicius Monego 2024-03-24 10:48:04 -03:00
parent 8a683b1628
commit 064fcf007b
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -13702,18 +13702,18 @@ (define-public python-pyzmq
(define-public python-immutabledict
(package
(name "python-immutabledict")
(version "2.2.1")
(version "4.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "immutabledict" version))
(sha256
(base32 "0fpc4gbk7inpfbgdypsg6c18bmdjw8gwx47bjw0hvixn3gghxnqx"))))
(build-system python-build-system)
(base32 "0pvwfasa5l78pi32zk55x5ihpdzkdh4f3xwbfmd7ldyjma0zs0z0"))))
(build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ; no tests in PyPI release and no setup.py in GitHub
(native-inputs
(list python-pytest))
(list python-poetry-core python-pytest))
(home-page "https://github.com/corenting/immutabledict")
(synopsis "Immutable wrapper around dictionaries")
(description