diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 00:27:33 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-02-01 17:47:17 +0100 |
commit | 373343a85584d3e9232d8739f5ac9e4141c6cf22 (patch) | |
tree | 13e9f096abaf712457df72ef504815c59b53e74c | |
parent | ab59f3b2a42b09eefd685829cddcec01838d0726 (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))) |