summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-21 20:21:03 -0300
committerVinicius Monego <monego@posteo.net>2025-06-21 23:27:34 -0300
commit1a1dd09edf772dfc3ff2aa946159e0175ce136e6 (patch)
tree600be1c97ddf869f91c8b3ec88f7db3dfbcddc50 /gnu/packages/python-xyz.scm
parent0e63adafe1880eed2d1082574e53d63b0affd1ab (diff)
gnu: python-inform: Update to 1.34.
* gnu/packages/python-xyz.scm (python-inform): Update to 1.34. [build-system]: Use pyproject-build-system. [native-inputs]: Remove python-hypothesis, python-pytest-cov, python-pytest-runner. Add python-flit-core. [propagated-inputs]: Remove python-six. Change-Id: Iec720ab8c86a816b2da4860b4529c76680e1d1ca
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 24e1dd1d55..166e10f369 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34429,21 +34429,21 @@ are plain text, reStructuredText and HTML.")
(define-public python-inform
(package
(name "python-inform")
- (version "1.23.0")
+ (version "1.34")
(source
(origin
(method url-fetch)
(uri (pypi-uri "inform" version))
(sha256
(base32
- "0dvc5klbnbryrvspp45nmlg02g40j7xspcz7lqsm0c0dj0z29zdz"))))
- (build-system python-build-system)
+ "1dzj09nxqpzrb4gnxi7dhbh2nvbkzl79vhwf2sg73f0l3dp10qy4"))))
+ (build-system pyproject-build-system)
(arguments
`(#:tests? #f)) ; PyPI tarball lacks tests
(native-inputs
- (list python-hypothesis python-pytest-cov python-pytest-runner))
+ (list python-flit-core))
(propagated-inputs
- (list python-arrow python-six))
+ (list python-arrow))
(home-page "https://inform.readthedocs.io")
(synopsis "Print & logging utilities for communicating with user")
(description