summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-14 16:38:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:14 +0100
commitdb8d8e0354019c3c4a7ffe509b5daf02092d1c36 (patch)
treed2d13740372c4050ffcba98ead7e2f0370267cf4 /gnu/packages/python-xyz.scm
parentc6f2ec4883fb6437ce4302d07b0dc97a445bdad3 (diff)
gnu: python-amply: Update to 0.1.6.
* gnu/packages/python-xyz.scm (python-amply): Update to 0.1.6. [build-system]: Use pyproject. [native-inputs]: Add python-pytest, python-setuptools, and python-wheel. Change-Id: If8d8854a9e76ed36fd2d158293a6de8d0c9b8b87
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2b60c3c2b0..710c5c7225 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15580,19 +15580,22 @@ Python.")
(define-public python-amply
(package
(name "python-amply")
- (version "0.1.4")
+ (version "0.1.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "amply" version))
(sha256
- (base32
- "0f1db9zp0rsfzxvaz55xwh8h5rfdgr9a2a715g06ic8nknsdq4nb"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-docutils python-pyparsing))
+ (base32 "195fg1n5nsl722hk33f6a7ak3n0hfs8yfpqi2xkhdqgqrh1i2hk1"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-setuptools-scm))
+ (list python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (propagated-inputs
+ (list python-docutils
+ python-pyparsing))
(home-page "https://github.com/willu47/amply")
(synopsis "Load and manipulate AMPL/GLPK data as Python data structures")
(description