ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / qt5reactor / default.nix
bloba85f2ad6892a18479f7adf649b913f59b576c51e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pyqt5
5 , twisted
6 , pytest-twisted
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "qt5reactor";
12   version = "0.6.3";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "c3470a8a25d9a339f9ca6243502a9b2277f181d772b7acbff551d5bc363b7572";
17   };
19   propagatedBuildInputs = [
20     pyqt5
21     twisted
22   ];
24   checkInputs = [
25     pytest-twisted
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "qt5reactor" ];
31   meta = with lib; {
32     description = "Twisted Qt Integration";
33     homepage = "https://github.com/twisted/qt5reactor";
34     license = licenses.mit;
35     maintainers = with maintainers; [ dotlambda ];
36   };