blob: 626030ea4d8a31fd7daf92416dc22f98ff006069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{
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;
};
}
|