diff options
author | Vinicius Monego <[email protected]> | 2024-03-24 10:48:04 -0300 |
---|---|---|
committer | Vinicius Monego <[email protected]> | 2024-03-30 08:36:34 -0300 |
commit | 064fcf007b2ceb028ca194198be56fe0848c5022 (patch) | |
tree | 7ac01d24c07d46dfa18b200ea0e2bbb0b0dca1dd | |
parent | 8a683b1628eeb3906922e4e7d14bbbc5e86481a1 (diff) |
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
-rw-r--r-- | gnu/packages/python-xyz.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2c1cf5bd03..e6aaf4ebf4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13702,18 +13702,18 @@ applications.") (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 |