diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-02 23:19:28 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-02 23:19:55 +0100 |
| commit | c93e4b667feb41cbda2e84051c8ad60de176db7c (patch) | |
| tree | a0eef932965a51d35ffe1bec6d9ecca69380436f | |
| parent | 08cea43f7a742423439c90199b7bc835a419b732 (diff) | |
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] <test-backend>: Use 'unittest.
[propagated-inputs]: Remove python-setuptools.
[native-inputs]: Add python-setuptools.
Change-Id: Iff02db4d902cb51440c2efed7746897b8d94a2ba
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d0c7e970ca..85632576de 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 |
