python3Packages.qt5reactor: init at 0.6.3

This commit is contained in:
Robert Schütz 2022-01-29 02:19:10 +00:00 committed by Robert Schütz
parent 4094fcb66f
commit 8d28f1046b
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyqt5
, twisted
, pytest-twisted
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "qt5reactor";
version = "0.6.3";
src = fetchPypi {
inherit pname version;
sha256 = "c3470a8a25d9a339f9ca6243502a9b2277f181d772b7acbff551d5bc363b7572";
};
propagatedBuildInputs = [
pyqt5
twisted
];
checkInputs = [
pytest-twisted
pytestCheckHook
];
pythonImportsCheck = [ "qt5reactor" ];
meta = with lib; {
description = "Twisted Qt Integration";
homepage = "https://github.com/twisted/qt5reactor";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -8378,6 +8378,8 @@ in {
qscintilla = self.qscintilla-qt5; qscintilla = self.qscintilla-qt5;
qt5reactor = callPackage ../development/python-modules/qt5reactor { };
qtawesome = callPackage ../development/python-modules/qtawesome { }; qtawesome = callPackage ../development/python-modules/qtawesome { };
qtconsole = callPackage ../development/python-modules/qtconsole { }; qtconsole = callPackage ../development/python-modules/qtconsole { };