Files
Martin Weinelt fdff14cc9e python3Packages.ttkbootstrap: 1.12.1 -> 1.14.2
This commit was automatically generated using update-python-libraries.
2025-08-09 19:04:34 +02:00

43 lines
894 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
buildPythonPackage,
pillow,
setuptools,
}:
buildPythonPackage rec {
pname = "ttkbootstrap";
version = "1.14.2";
pyproject = true;
src = fetchFromGitHub {
owner = "israel-dryer";
repo = "ttkbootstrap";
tag = "v${version}";
hash = "sha256-D1Gx+gP6xbeOhKcjb2uhwhHlYFhma9y04tp0ibJCw6g=";
};
build-system = [
setuptools
];
dependencies = [
pillow
];
pythonRelaxDeps = [ "pillow" ];
# As far as I can tell, all tests require a display and are not normal-ish pytests
# but appear to just be python scripts that run demos of components?
doCheck = false;
meta = {
description = "Supercharged theme extension for tkinter inspired by Bootstrap";
homepage = "https://github.com/israel-dryer/ttkbootstrap";
maintainers = with lib.maintainers; [ e1mo ];
license = lib.licenses.mit;
};
}