summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 16:34:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 17:06:58 +0100
commit58a74de03302fb9885d2368f3ec4b8c9f9374dc4 (patch)
tree6e4dc43d2263ddf4cb19ebbba8e3182c09394708
parent723e20a227e403bf11528070220088f244959fa9 (diff)
gnu: python-bottle: Update to 0.13.4.
* gnu/packages/python-web.scm (python-bottle): Update to 0.13.4. [native-inputs]: Add python-setuptools. Change-Id: I5dc04f135ec5f6d83aff428a4b09fd305904efe2
-rw-r--r--gnu/packages/python-web.scm16
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 007d9da4f1..5ba508e24d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7145,23 +7145,15 @@ addon modules.")
(define-public python-bottle
(package
(name "python-bottle")
- (version "0.12.23")
+ (version "0.13.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "bottle" version))
(sha256
- (base32 "0rs1w293gp5bhxip2cci8mfkhld6n5qcznvlna3nxclz76mf6gb8"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (with-directory-excursion "test"
- (invoke "pytest" "-vvv"))))))))
- (native-inputs (list python-pytest))
+ (base32 "0irz5i3h73pqz0ssgp3yk12zx33q7lrlh8p0in9jgchjgqr7hzkq"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://bottlepy.org/")
(synopsis "WSGI framework for small web-applications")
(description "@code{python-bottle} is a WSGI framework for small web-applications.")