rekado pushed a commit to branch master
in repository guix.
commit b70ac4564ceb09d9e6136a54086c03c36b031865
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Jan 6 17:25:58 2025 +0100
gnu: python-flask-assets: Update to 2.1.0-1.62efd23.
* gnu/packages/python-web.scm (python-flask-assets): Update to
2.1.0-1.62efd23.
[source]: Fetch from git repository.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add nss-certs-for-test, python-pytest, python-setuptools,
and
python-wheel.
Change-Id: I8c3dedb39d4cc1e51d9c3ef9fe9298586f871736
---
gnu/packages/python-web.scm | 45 ++++++++++++++++++++++++++-------------------
1 file changed, 26 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index f81ec5749a..9e302e8209 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2136,26 +2136,33 @@ between a web browser and web server.")
(license license:expat)))
(define-public python-flask-assets
- (package
- (name "python-flask-assets")
- (version "2.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "Flask-Assets" version))
- (sha256
- (base32 "1hmqldxc7zciksmcl35jx0wbyrrxc7vk2a57mmmd8i07whsymz8x"))))
- (build-system python-build-system)
- (arguments
- ;; Tests require python-flask-script which is incompatible with Flask2.
- `(#:tests? #f))
- (propagated-inputs
- (list python-flask python-webassets))
- (home-page "https://github.com/miracle2k/flask-assets")
- (synopsis "Asset management for Flask")
- (description "This package integrates @code{webassets} with Flask, adding
+ ;; The latest release still depends on the abandoned flask-script, whereas
+ ;; at this later commit (already 2 years old at the time of this writing)
+ ;; the dependency has been lifted.
+ (let ((commit "62efd23fe95ee6a86fc1cfaa98fc1e2152093557")
+ (revision "1"))
+ (package
+ (name "python-flask-assets")
+ (version (git-version "2.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/miracle2k/flask-assets/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "11q8vm2ipj4xrvawy9vl1l4k8kb4r72ghy1n8xrzci52v6lx8960"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs
+ (list python-flask python-webassets))
+ (native-inputs
+ (list nss-certs-for-test python-pytest python-setuptools python-wheel))
+ (home-page "https://github.com/miracle2k/flask-assets")
+ (synopsis "Asset management for Flask")
+ (description "This package integrates @code{webassets} with Flask, adding
support for merging, minifying and compiling CSS and Javascript files.")
- (license license:bsd-2)))
+ (license license:bsd-2))))
(define-public python-flask-babel
(package