gnu: python-frozendict: Update to 2.4.6.

* gnu/packages/python-xyz.scm (python-frozendict): Update to 2.4.6. Fix build.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.

Change-Id: I023c36fb55fb4d89ffb965165818221d3c6a58f3
This commit is contained in:
Sharlatan Hellseher 2025-01-28 22:56:18 +00:00 committed by Andreas Enge
parent e78754408a
commit f5b677e762
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -33691,14 +33691,18 @@ library. Only the high-level API is bound.")
(define-public python-frozendict
(package
(name "python-frozendict")
(version "2.3.4")
(version "2.4.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "frozendict" version))
(sha256
(base32 "0y3zn57i1q5192f7l4w2z2zsy3rrx50g563msaq954r58s1v3d0m"))))
(build-system python-build-system)
(base32 "13ib358v66c9ykfz3plpxcs96ca6vkx8w84sjv26zlpvf1jd2z6z"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-setuptools
python-wheel))
(home-page "https://github.com/Marco-Sulla/python-frozendict")
(synopsis "Simple immutable mapping for Python")
(description