43 lines
894 B
Nix
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;
|
|
};
|
|
}
|