summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-03 15:25:54 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-03 21:53:31 +0100
commit3033b10fae1f8f028c2fd62fe2ee6fa2be47ad10 (patch)
tree196ab7ce0474fccad40a30d3950bedcf9487117a /gnu/packages/python-xyz.scm
parentd0e88e8b1abe07a1acd2ca6c4cd9c182e2d4345d (diff)
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>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 900dc4a964..4710c9ff33 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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