blob: 5fccff445886f3b3a904da4887fe933fc21b70f2 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
tkinter,
typing-extensions,
}:
buildPythonPackage rec {
pname = "async-tkinter-loop";
version = "0.10.3";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "async_tkinter_loop";
hash = "sha256-Jyg0jlRYW9csMF3ZslcvCJyDq3/gvx+5e59sTCt7jvE=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
tkinter
typing-extensions
];
pythonRemoveDeps = [ "asyncio" ];
pythonImportsCheck = [ "async_tkinter_loop" ];
meta = {
description = "Implementation of asynchronous mainloop for tkinter, the use of which allows using async handler functions";
homepage = "https://github.com/insolor/async-tkinter-loop";
changelog = "https://github.com/insolor/async-tkinter-loop/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AngryAnt ];
};
}
|