GNU bug report logs -
#57094
Updating wagtail to 3.0.
Previous Next
Full log
View this message in rfc822 format
* gnu/packages/python-web.scm (python-curlylint): New variable.
---
gnu/packages/python-web.scm | 38 +++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7c5e5651c8..0c02c4f889 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -550,6 +550,44 @@ (define-public python-css-html-js-minify
;; looks like the user can choose a license.
(license (list license:gpl3+ license:lgpl3+ license:expat))))
+(define-public python-curlylint
+ (package
+ (name "python-curlylint")
+ (version "0.13.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "curlylint" version))
+ (sha256
+ (base32
+ "0li72vig9ibrdfazvaprfawrq84ylg00byrfq554081r1wb9v2q0"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (delete 'sanity-check)
+ (replace 'check
+ (lambda* (#:key tests? inputs #:allow-other-keys)
+ (if tests?
+ (lambda _
+ (substitute* "setup.py"
+ (("parsy==1.1.0") "parsy>=1.1.0"))
+ (invoke "pytest" "-vv"))
+ (format #t "test suite not run~%")))))))
+ (propagated-inputs (list python-attrs
+ python-click
+ python-dataclasses
+ python-parsy
+ python-pathspec
+ python-toml))
+ (home-page "https://github.com/thibaudcolas/curlylint")
+ (synopsis
+ "Experimental HTML templates linting")
+ (description
+ "This package provides experimental HTML templates linting for Jinja,
+Nunjucks, Django templates, Twig and Liquid.")
+ (license license:expat)))
+
(define-public python-aws-sam-translator
(package
(name "python-aws-sam-translator")
--
2.37.1
This bug report was last modified 1 year and 261 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.