guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 05d1383b7a098f9e47ece3743cf96d66e8c93654
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 24 12:33:33 2025 +0100

    gnu: python-tldr: Rename to tldr.
    
    This package is the final CLI and not a Python library.
    
    * gnu/packages/python-xyz.scm (tldr): New variable.
    [propagated-inputs]: Move to [inputs].
    (python-tldr): Mark as deprecated in favor of tldr.
    
    Change-Id: Icbfa5dd09a9f30165b5ea7825cc9e6a48e96b860
---
 gnu/packages/python-xyz.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c8b4650022..a0cd957e4c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28895,9 +28895,9 @@ the public ICANN TLDs and their exceptions.  It can 
optionally support the
 Public Suffix List's private domains as well.")
     (license license:bsd-3)))
 
-(define-public python-tldr
+(define-public tldr
   (package
-    (name "python-tldr")
+    (name "tldr")
     (version "3.4.3")
     (source
      (origin
@@ -28922,7 +28922,7 @@ Public Suffix List's private domains as well.")
      (list python-hatchling
            python-pytest
            python-sphinx-argparse))
-    (propagated-inputs
+    (inputs
      (list python-colorama
            python-termcolor
            python-shtab))
@@ -28933,6 +28933,9 @@ 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)))
 
+(define-public python-tldr
+  (deprecated-package "python-tldr" tldr))
+
 (define-public python-nodeenv
   (package
     (name "python-nodeenv")

Reply via email to