summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-12-15 13:10:45 +0000
committerAndreas Enge <andreas@enge.fr>2025-12-17 11:20:19 +0100
commit7021a9632b4278715cbbf78824bebb8954d5b538 (patch)
tree36481686a5082818cecf19517d81984714ac4c0f /gnu/packages/python-web.scm
parentcf5795c4cb79737e1135cea587cc40b294cbc336 (diff)
gnu: python-plaster: Update to 1.1.2.
* gnu/packages/python-web.scm (python-plaster): Update to 1.1.2. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I208d7576794767d3cc004ef49ee9a9a53303aa8c
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9fa92e34340..9916fd45f7d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10171,16 +10171,17 @@ translation.")
(define-public python-plaster
(package
(name "python-plaster")
- (version "1.0")
+ (version "1.1.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "plaster" version))
(sha256
(base32
- "1hy8k0nv2mxq94y5aysk6hjk9ryb4bsd13g83m60hcyzxz3wflc3"))))
- (build-system python-build-system)
+ "167gfh0ahdll9m96ypgasji6yry2hkn9f0ml1b0lf4ccpxagrgpq"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest))
+ (list python-pytest
+ python-setuptools))
(home-page "https://docs.pylonsproject.org/projects/plaster/en/latest/")
(synopsis "Configuration loader for multiple config file formats")
(description