guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 72accc03456e9b0feab93751790194de0f74b6fb
Author: Nguyễn Gia Phong <[email protected]>
AuthorDate: Thu Feb 19 20:38:58 2026 +0900
gnu: Add argos-translate-gui.
* gnu/packages/machine-learning.scm (argos-translate-gui):
New variable.
Change-Id: Ic9ed903e34f1b34a51e1c8d2757d4dc60473ef46
---
gnu/packages/machine-learning.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/machine-learning.scm
b/gnu/packages/machine-learning.scm
index 85e0d84274..c332d6768a 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -6246,6 +6246,36 @@ with a @code{.argosmodel} extension. This package
provides
the Python library and the command-line program.")
(license license:expat)))
+(define-public argos-translate-gui
+ ;; The Git repository is not tagged.
+ (let ((commit "06aafde3faf1709080471c94914382a566f6f775")
+ (revision "0"))
+ (package
+ (name "argos-translate-gui")
+ (version (git-version "1.6.5" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/argosopentech/argos-translate-gui")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0g251fgwwbk96f8n11c8gzidqgfkrkwpldxk9zq0kkhm729b9yyw"))))
+ (build-system pyproject-build-system)
+ (arguments '(#:tests? #f)) ;no test
+ (native-inputs (list python-setuptools))
+ (inputs (list python-argostranslate python-pyqt))
+ (home-page "https://www.argosopentech.com")
+ (synopsis "Graphical user interface for Argos Translate")
+ (description
+ "Argos Translate uses OpenNMT for translations and can be used
+as either a Python library, command-line, or GUI application.
+It supports installing language model packages which are ZIP archives
+with a @code{.argosmodel} extension. This package provides
+a Qt interface for Argos Translate.")
+ (license license:expat))))
+
(define-public python-hmmlearn
(package
(name "python-hmmlearn")