summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/qasync/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/qasync/default.nix')
-rw-r--r--pkgs/development/python-modules/qasync/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/qasync/default.nix b/pkgs/development/python-modules/qasync/default.nix
index d8eb5b4c7c69..58451552bd3f 100644
--- a/pkgs/development/python-modules/qasync/default.nix
+++ b/pkgs/development/python-modules/qasync/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pyqt5
-, pytestCheckHook
-, poetry-core
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pyqt5,
+ pytestCheckHook,
+ poetry-core,
}:
buildPythonPackage rec {
@@ -31,9 +32,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "qasync" ];
- disabledTestPaths = [
- "tests/test_qeventloop.py"
- ];
+ disabledTestPaths = [ "tests/test_qeventloop.py" ];
meta = {
description = "Allows coroutines to be used in PyQt/PySide applications by providing an implementation of the PEP 3156 event-loop";