aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--battering/packages/python-xyz.scm21
1 files changed, 20 insertions, 1 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm
index 0b0c800..dad6627 100644
--- a/battering/packages/python-xyz.scm
+++ b/battering/packages/python-xyz.scm
@@ -12,7 +12,6 @@
#:use-module (gnu packages tmux)
#:use-module (gnu packages xdisorg))
-
(define-public python-pyfzf
(package
(name "python-pyfzf")
@@ -57,3 +56,23 @@
(description "Arsenal is just a quick inventory and launcher for hacking programs.")
(license license:gpl3)))
+(define-public python-qt-material
+ (package
+ (name "python-qt-material")
+ (version "2.14")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "qt-material" version))
+ (sha256
+ (base32 "08xfyzrdasliii4ql17jqyfv7glhgh27rfrnwdxcy5vjx6nvbnxm"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-jinja2))
+ (native-inputs (list python-setuptools python-wheel))
+ (home-page "https://pypi.org/project/qt-material/")
+ (synopsis
+ "Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6.")
+ (description
+ "This is another stylesheet for PySide6, PySide2, PyQt5 and PyQt6, which
+looks like Material Design (close enough).")
+ (license license:bsd-2)))