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