summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-01-28 22:56:18 +0000
committerAndreas Enge <andreas@enge.fr>2025-04-16 11:46:11 +0200
commitf5b677e762ab5ced2c132610fdd4512f8ffaabff (patch)
tree6871b349f7a7bf70d18f79faa40b1bd02c030ddc
parente78754408ab7b8e2a173c1af4e6a79b9e7d6de0e (diff)
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
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9b0938ffe4..82ed62bd8a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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