depot/third_party/nixpkgs/pkgs/development/python-modules/qt-material/default.nix

31 lines
590 B
Nix
Raw Normal View History

{ 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 ];
};
}