guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#44990] [PATCH v2 3/8] gnu: Add python-qdarkstyle.


From: Léo Le Bouter
Subject: [bug#44990] [PATCH v2 3/8] gnu: Add python-qdarkstyle.
Date: Fri, 11 Dec 2020 20:53:26 +0100

From: John Doe <dftxbs3e@free.fr>

* gnu/packages/python-xyz.scm (python-qdarkstyle): New variable.
---
 gnu/packages/python-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c3e55f5aff..c3591f53b4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23270,3 +23270,30 @@ process.")
       "Helpdev is a library to easily extract information about the Python
 environment.")
     (license license:expat)))
+
+(define-public python-qdarkstyle
+  (package
+    (name "python-qdarkstyle")
+    (version "2.8.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "QDarkStyle" version))
+        (sha256
+          (base32
+            "0883vzg35fzpyl1aiijzpfcdfvpq5vi325w0m7xkx7nxplh02fym"))))
+    (build-system python-build-system)
+    (arguments
+      `(;; Fails unable to detect valid Qt bindings even if you
+       ;; add them as native-inputs.
+       #:tests? #f))
+    (propagated-inputs
+      `(("python-helpdev" ,python-helpdev)
+        ("python-qtpy" ,python-qtpy)))
+    (home-page
+      "https://github.com/ColinDuquesnoy/QDarkStyleSheet";)
+    (synopsis
+      "Complete dark stylesheet for Python and Qt applications")
+    (description
+      "QDarkStyle is the most complete dark stylesheet for Python and Qt 
applications.")
+    (license license:expat)))
-- 
2.29.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]