blob: 42d50befe550d2d761adaa6ba997e73298c9a4e7 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
twisted,
qtpy,
pyqt5,
}:
buildPythonPackage {
pname = "qreactor-unstable";
version = "0.6.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "frmdstryr";
repo = "qt-reactor";
rev = "364b3f561fb0d4d3938404d869baa4db7a982bf0";
sha256 = "1nb5iwg0nfz86shw28a2kj5pyhd4jvvxhf73fhnfbl8scgnvjv9h";
};
propagatedBuildInputs = [
twisted
qtpy
];
nativeCheckInputs = [ pyqt5 ];
pythonImportsCheck = [ "qreactor" ];
meta = {
homepage = "https://github.com/frmdstryr/qt-reactor";
description = "Twisted and PyQt5/qtpy eventloop integration base";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ raboof ];
};
}
|