blob: c787c092b907d8e615ebda39375e675c167af1c7 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
tkinter,
}:
buildPythonPackage rec {
pname = "sv-ttk";
version = "2.6.1";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "sv_ttk";
hash = "sha256-R1idXiA5jPQE6DYvJPPtSPODDNCs4FbYM1T6Jdjk/kg=";
};
# No tests available
doCheck = false;
propagatedBuildInputs = [ tkinter ];
pythonImportsCheck = [ "sv_ttk" ];
meta = {
description = "Gorgeous theme for Tkinter/ttk, based on the Sun Valley visual style";
homepage = "https://github.com/rdbende/Sun-Valley-ttk-theme";
changelog = "https://github.com/rdbende/Sun-Valley-ttk-theme/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AngryAnt ];
};
}
|