From c93e4b667feb41cbda2e84051c8ad60de176db7c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 2 Oct 2025 23:19:28 +0100 Subject: [PATCH] gnu: python-yamllint: Update to 1.37.1. * gnu/packages/python-xyz.scm (python-yamllint): Update to 1.37.1. [build-system]: Switch to pyproject-build-system. [arguments] : Use 'unittest. [propagated-inputs]: Remove python-setuptools. [native-inputs]: Add python-setuptools. Change-Id: Iff02db4d902cb51440c2efed7746897b8d94a2ba --- gnu/packages/python-xyz.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d0c7e970ca4087d3e78201083dad9b34af71c68c..85632576de8791d68f180a93f609144de2c1eb80 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28589,16 +28589,20 @@ user's @file{~/Trash} directory.") (define-public python-yamllint (package (name "python-yamllint") - (version "1.31.0") + (version "1.37.1") (source (origin (method url-fetch) (uri (pypi-uri "yamllint" version)) (sha256 - (base32 "0rbs7xq7y7bp3k75z7jamrdrrfyp95hifsz0hwm1cgkk5z8z30rd")))) - (build-system python-build-system) + (base32 "0p9401y9f1pgxi9lggmw6wv135kfnd361n3hjh2civ4vap2w1xw1")))) + (build-system pyproject-build-system) + (arguments + (list #:test-backend #~'unittest)) + (native-inputs + (list python-setuptools)) (propagated-inputs - (list python-pathspec python-pyyaml python-setuptools)) + (list python-pathspec python-pyyaml)) (home-page "https://github.com/adrienverge/yamllint") (synopsis "Linter for YAML files") (description