fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
609 B
Nix
28 lines
609 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
jinja2,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "qt-material";
|
|
version = "2.14";
|
|
format = "setuptools";
|
|
|
|
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 ];
|
|
};
|
|
}
|