python3Packages.qt5reactor: init at 0.6.3
This commit is contained in:
parent
4094fcb66f
commit
8d28f1046b
37
pkgs/development/python-modules/qt5reactor/default.nix
Normal file
37
pkgs/development/python-modules/qt5reactor/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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 { };
|
||||||
|
Loading…
Reference in New Issue
Block a user