Unverified Commit ee8b4482 authored by Sophie Tauchert's avatar Sophie Tauchert Committed by Sophie Tauchert
Browse files

python3Packages.qt-material: init at 2.14

parent 1ce7106b
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };