This is an automated email from the git hooks/post-receive script.

andreas pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0502a30d31 gnu: Add meteo-qt.
0502a30d31 is described below

commit 0502a30d3192c7369a18b1b3bcd61ffe4d7d6acd
Author: Andrew Wong <wonga...@icloud.com>
AuthorDate: Thu Apr 3 17:06:08 2025 -0400

    gnu: Add meteo-qt.
    
    * gnu/packages/weather.scm (meteo-qt): New variable.
    
    Change-Id: I2ba0a0612845659abfb917811866684eb46c3a80
    Signed-off-by: Andreas Enge <andr...@enge.fr>
---
 gnu/packages/weather.scm | 40 +++++++++++++++++++++++++++++++++++++++-
 1 file changed, 39 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/weather.scm b/gnu/packages/weather.scm
index 1ee4569b27..2651c05035 100644
--- a/gnu/packages/weather.scm
+++ b/gnu/packages/weather.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2022, 2024 Nicolas Goaziou <m...@nicolasgoaziou.fr>
+;;; Copyright © 2025 Andrew Wong <wonga...@icloud.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -19,12 +20,16 @@
 (define-module (gnu packages weather)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system python)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix packages)
   #:use-module (gnu packages)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages golang-build)
-  #:use-module (gnu packages golang-xyz))
+  #:use-module (gnu packages golang-xyz)
+  #:use-module (gnu packages qt)
+  #:use-module (gnu packages xml))
 
 (define-public wego
   (package
@@ -55,3 +60,36 @@ forecast for one or seven days.  Displayed information 
includes temperature
 range---felt and measured---, wind speed and direction, viewing distance,
 precipitation amount and probability.")
     (license license:isc)))
+
+(define-public meteo-qt
+  (package
+    (name "meteo-qt")
+    (version "4.2")
+    (source
+     (origin (method git-fetch)
+             (uri (git-reference (url "https://github.com/dglent/meteo-qt";)
+                                 (commit (string-append "v" version))))
+             (file-name (git-file-name name version))
+             (sha256
+              (base32 
"1cvmh5rq50dncd2fmp4amjb2hhl2mryb2ywg0zdzhz89dkjq0kdk"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pyqt-6))
+    (propagated-inputs (list python-lxml python-pyqt-6 python-sip))
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-before 'build 'remove-translations
+                 (lambda _
+                   ;; Translation processing is broken because Guix thinks 
lprodump
+                   ;; is in qtbase, not qttools. So, we'll skip it and exclude
+                   ;; qttools from the native input list until it is fixed.
+                   (substitute* "setup.py"
+                     (("/usr") #$output)
+                     (("^.+lrelease-pro-qt6.+$") "")
+                     (("^.+meteo_qt/translations.+$") "")))))))
+    (home-page "https://github.com/dglent/meteo-qt";)
+    (synopsis "Weather application for the system tray")
+    (description "meteo-qt is an application to display weather information in
+desktop panels, desktop notifictions and its own window.  Weather information 
is
+retrieved from OpenWeatherMap.")
+    (license license:gpl3)))

Reply via email to