python3Packages.qt-material: init at 2.14
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user