1{ lib
2, buildPythonPackage
3, fetchPypi
4, jinja2
5}:
6
7buildPythonPackage rec {
8 pname = "qt-material";
9 version = "2.14";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-tdu1relyF8964za7fAR8kL6zncfyBIpJjJFq1fL3riM=";
14 };
15
16 propagatedBuildInputs = [
17 jinja2
18 ];
19
20 pythonImportsCheck = [
21 "qt_material"
22 ];
23
24 meta = with lib; {
25 description = "Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6";
26 homepage = "https://github.com/UN-GCPDS/qt-material";
27 license = licenses.bsd2;
28 maintainers = with maintainers; [ _999eagle ];
29 };
30}