diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 00:27:33 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:25 +0200 |
commit | f8c6408d6284c09fc475858ac3c1dbf148965bc8 (patch) | |
tree | 97516ff5365197fe0b908981a8fafb28b5c15486 | |
parent | 7f5bf7e3df0536cc212f85cf09fa8c0349ce0388 (diff) |
battering: Add python-qt-material.
* battering/packages/python-xyz.scm (python-qt-material): New variable.
-rw-r--r-- | battering/packages/python-xyz.scm | 21 |
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))) |