From 27d2988964fa6ecf84e9715c665ec06719c64788 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 24 Oct 2025 12:30:45 +0100 Subject: [PATCH] gnu: python-tldr: Update to 3.4.3. * gnu/packages/python-xyz.scm (python-tldr): Update to 3.4.3. [native-inputs]: Remove python-pytest-runner, python-setuptools, and python-wheel; add python-hatchling. Change-Id: I9c1219bdc8984701cf2477d40a584e6820672b3e --- gnu/packages/python-xyz.scm | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8052e1c38e556f1b6ef997a7a373b92b1e780d50..c8b4650022ad9766c32f6937628a1e8b2da500be 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28898,16 +28898,16 @@ Public Suffix List's private domains as well.") (define-public python-tldr (package (name "python-tldr") - (version "3.3.0") + (version "3.4.3") (source (origin - (method git-fetch) ; there's no test in PyPI + (method git-fetch) (uri (git-reference - (url "https://github.com/tldr-pages/tldr-python-client") - (commit version))) + (url "https://github.com/tldr-pages/tldr-python-client") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "15mab6a7ph2rviy5f2ypid6qdbb583fvaf5zhd6q0nrggxx0kkcm")))) + (base32 "06rhpywaypqwakw8v187cdf52yl5c7fm19f1q7nbbsydbs0ndmb1")))) (build-system pyproject-build-system) (arguments (list @@ -28919,11 +28919,9 @@ Public Suffix List's private domains as well.") (lambda _ (invoke "make" "-C" "docs")))))) (native-inputs - (list python-pytest - python-pytest-runner - python-setuptools - python-sphinx-argparse - python-wheel)) + (list python-hatchling + python-pytest + python-sphinx-argparse)) (propagated-inputs (list python-colorama python-termcolor @@ -28933,7 +28931,7 @@ Public Suffix List's private domains as well.") (description "This package provides the @code{tldr} command allowing users to view @code{tldr} pages from a shell. The @code{tldr} pages are a community effort to simplify the man pages with practical examples.") - (license license:expat))) ; MIT license + (license license:expat))) (define-public python-nodeenv (package