python3Packages.qt-material: init at 2.14

This commit is contained in:
Sophie Tauchert
2023-07-26 14:50:32 +02:00
committed by Sophie Tauchert
parent 1ce7106b9e
commit ee8b4482ab
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, jinja2
}:
buildPythonPackage rec {
pname = "qt-material";
version = "2.14";
src = fetchPypi {
inherit pname version;
hash = "sha256-tdu1relyF8964za7fAR8kL6zncfyBIpJjJFq1fL3riM=";
};
propagatedBuildInputs = [
jinja2
];
pythonImportsCheck = [
"qt_material"
];
meta = with lib; {
description = "Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6";
homepage = "https://github.com/UN-GCPDS/qt-material";
license = licenses.bsd2;
maintainers = with maintainers; [ _999eagle ];
};
}
+2
View File
@@ -10545,6 +10545,8 @@ self: super: with self; {
qstylizer = callPackage ../development/python-modules/qstylizer { };
qt-material = callPackage ../development/python-modules/qt-material { };
qt5reactor = callPackage ../development/python-modules/qt5reactor { };
qtawesome = callPackage ../development/python-modules/qtawesome { };