diff options
-rw-r--r-- | gnu/packages/python.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 8cfe902ad1..d076bc925f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15724,3 +15724,24 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "Utility library for gitignore style pattern matching of file paths.") (license #f))) + +(define-public python-yamllint + (package + (name "python-yamllint") + (version "1.11.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "yamllint" version)) + (sha256 + (base32 + "114nbzy8s9sr9czxx7g64p8naf46zgk2cab0df00l3sz6bmcmkq5")))) + (build-system python-build-system) + (propagated-inputs + `(("python-pathspec" ,python-pathspec) + ("python-pyyaml" ,python-pyyaml))) + (home-page + "https://github.com/adrienverge/yamllint") + (synopsis "A linter for YAML files.") + (description "A linter for YAML files.") + (license #f))) |