1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-17 07:40:29 +02:00

gnu: python-dotmap: Switch to pyproject.

* gnu/packages/python-xyz.scm (python-dotmap):
[source]: Run guix style.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:test-backend>: Set it.
[native-inputs]: Add python-setuptools.

Change-Id: I256a69e671d5f830b1ed3b44ac7d02dd8b216e28
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-10-03 15:25:54 +02:00
committed by Sharlatan Hellseher
parent d0e88e8b1a
commit 3033b10fae

View File

@@ -2544,13 +2544,15 @@ to create a well-documented piece of software.")
(package
(name "python-dotmap")
(version "1.3.30")
(source (origin
(method url-fetch)
(uri (pypi-uri "dotmap" version))
(sha256
(base32
"0s5kb2v7jd0narz6m6jcicak3h5pw290wz21cdsv8pq77y9sf8aq"))))
(build-system python-build-system)
(source
(origin
(method url-fetch)
(uri (pypi-uri "dotmap" version))
(sha256
(base32 "0s5kb2v7jd0narz6m6jcicak3h5pw290wz21cdsv8pq77y9sf8aq"))))
(build-system pyproject-build-system)
(arguments (list #:test-backend #~'unittest))
(native-inputs (list python-setuptools))
(home-page "https://github.com/drgrib/dotmap")
(synopsis "Ordered, dynamically-expandable dot-access dictionary")
(description