My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/qt5reactor/default.nix

37 lines
669 B

{ 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 ];
};
}