summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-30 08:52:22 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-04 21:03:15 +0000
commitbb882b77f664046ccb0ce89c50c4bae6e8772f50 (patch)
treee70831b3c440225f30fab4d9576170e67cd0137d /gnu
parent2a74ea8a284008cfbc086584f46ab637e58feb9a (diff)
gnu: python-tornado-http-auth: Switch to pyproject.
* gnu/packages/python-web.scm (python-tornado-http-auth): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I2151a377a240fc77403b3970ac69e6a41c2acb82 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-web.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f68bfbbd826..a8cf858b002 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5346,13 +5346,18 @@ connection to each user.")
(version "1.1.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "tornado-http-auth" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gvalkov/tornado-http-auth")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0hyc5f0a09i5yb99pk4bxpg6w9ichbrb5cv7hc9hff7rxd8w0v0x"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-tornado))
+ (base32 "1v9sin1zlck9wvkwx0ldqb1b271xlkq63562w8g1yb7v6qka9q4f"))))
+ (build-system pyproject-build-system)
+ ;; XXX: This version is incompatible with current tornado.testing.
+ (arguments (list #:tests? #f))
+ (native-inputs (list python-setuptools))
+ (propagated-inputs (list python-tornado))
(home-page "https://github.com/gvalkov/tornado-http-auth")
(synopsis "Digest and basic authentication module for Tornado")
(description