[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/14: gnu: python-cfn-lint: Update to 0.65.0.
From: |
guix-commits |
Subject: |
12/14: gnu: python-cfn-lint: Update to 0.65.0. |
Date: |
Sun, 2 Oct 2022 18:11:34 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 35c92a63245ff214dbd7fe8910b6ef8a01280e18
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Thu Sep 22 19:44:08 2022 +0000
gnu: python-cfn-lint: Update to 0.65.0.
* gnu/packages/python-web.scm (python-cfn-lint): Update to 0.65.0.
[arguments]<#:phases>: Add 'skip-network-test.
[propagated-inputs]: Add python-importlib-resources,
python-jschema-to-python, python-sarif-om.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-web.scm | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index c088f3a8dc..1f0b43d1ad 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -711,7 +711,7 @@ decode and default on encode.
(define-public python-cfn-lint
(package
(name "python-cfn-lint")
- (version "0.54.3")
+ (version "0.65.0")
(home-page "https://github.com/aws-cloudformation/cfn-lint")
(source (origin
(method git-fetch)
@@ -721,11 +721,16 @@ decode and default on encode.
(file-name (git-file-name name version))
(sha256
(base32
- "106qf19n2k6sdjkb4006aidibd24qqiw901c1613xgjpnyw4dyl6"))))
+ "1rfacp39jssrbchrzb49vwrqyzhx5v7jfcgngqnb9r7qfs4bwi3w"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
+ (add-after 'unpack 'skip-network-test
+ (lambda _
+ ;; This test requires networking.
+ (substitute* "test/unit/module/formatters/test_formatters.py"
+ (("def test_sarif_formatter") "def _test_sarif_formatter"))))
(replace 'check
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
@@ -745,11 +750,14 @@ decode and default on encode.
(list python-pydot python-mock))
(propagated-inputs
(list python-aws-sam-translator
+ python-importlib-resources
+ python-jschema-to-python
python-jsonpatch
python-jsonschema
python-junit-xml
python-networkx
python-pyyaml
+ python-sarif-om
python-six))
(synopsis "Validate CloudFormation templates")
(description
- 05/14: gnu: Add tdlib-1.8.0., (continued)
- 05/14: gnu: Add tdlib-1.8.0., guix-commits, 2022/10/02
- 07/14: gnu: Add texlive-generic-xstring., guix-commits, 2022/10/02
- 08/14: gnu: python-networkx: Update to 2.8.6., guix-commits, 2022/10/02
- 09/14: gnu: python-aws-sam-translator: Update to 1.51.0., guix-commits, 2022/10/02
- 11/14: gnu: Add python-sarif-om., guix-commits, 2022/10/02
- 13/14: gnu: python-setools: Update to 4.4.0., guix-commits, 2022/10/02
- 14/14: gnu: python-louvain: Fix test., guix-commits, 2022/10/02
- 10/14: gnu: Add python-jschema-to-python., guix-commits, 2022/10/02
- 02/14: doc: Update the URL of ISC DHCP., guix-commits, 2022/10/02
- 06/14: gnu: emacs-telega: Use tdlib-1.8.0, guix-commits, 2022/10/02
- 12/14: gnu: python-cfn-lint: Update to 0.65.0.,
guix-commits <=