guix_mirror_bot pushed a commit to branch master
in repository guix.
commit bc2c62fda739927132fb9b5fbd9193abb3f0815a
Author: Andreas Enge <[email protected]>
AuthorDate: Thu Nov 20 11:37:31 2025 +0100
gnu: Remove tgcli.
* gnu/packages/telegram.scm (tgcli): Delete variable.
Fixes: guix/guix#3686
Change-Id: I4d616b2855f3a849e0a9ee59baf667fd7a916174
---
gnu/packages/telegram.scm | 48 -----------------------------------------------
1 file changed, 48 deletions(-)
diff --git a/gnu/packages/telegram.scm b/gnu/packages/telegram.scm
index d1a73bc629..3beda4f0b9 100644
--- a/gnu/packages/telegram.scm
+++ b/gnu/packages/telegram.scm
@@ -882,54 +882,6 @@ formerly a part of telegram-cli, but now being maintained
separately.")
(home-page "https://github.com/vysheng/tg")
(license license:gpl2+))))
-(define-public tgcli
- (package
- (name "tgcli")
- (version "0.3.1")
- (source
- (origin
- (method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/erayerdin/tgcli")
- (commit (string-append "v" version))))
- (file-name
- (git-file-name name version))
- (sha256
- (base32 "082zim7rh4r8qyscqimjh2sz7998vv9j1i2y2wwz2rgrlhkhly5r"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- ;; Test requirements referes to specific versions of packages,
- ;; which are too old. So we patch them to refer to any later versions.
- (add-after 'unpack 'patch-test-requirements
- (lambda _
- (substitute* "dev.requirements.txt"
- (("==") ">="))))
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest" "tests")))))))
- (native-inputs
- `(("coveralls" ,python-coveralls)
- ("pytest" ,python-pytest)
- ("pytest-click" ,python-pytest-click)
- ("pytest-cov" ,python-pytest-cov)
- ("mkdocs" ,python-mkdocs)
- ("mkdocs-material" ,python-mkdocs-material)
- ("requests-mock" ,python-requests-mock)))
- (propagated-inputs
- `(("click" ,python-click)
- ("colorful" ,python-colorful)
- ("requests" ,python-requests)
- ("yaspin" ,python-yaspin)))
- (home-page "https://tgcli.readthedocs.io")
- (synopsis "Telegram Terminal Application")
- (description "TgCli is a telegram client to automate repetitive tasks.")
- (license license:asl2.0)))
-
(define-public tgs2png
(let ((commit "25c15b7c2ca3b1a580a383d9d3cb13bf8531d04a")
(revision "0"))