about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioconsole
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-10 22:27:23 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-10 22:27:23 +0100
commit64e2709015a866c2f02cc16875f931c7c8be988f (patch)
tree66d813de445849a46f60e427758bbe0fe718280f /pkgs/development/python-modules/aioconsole
parentd36d401087a7e347c8b8ec539af1d32e130de564 (diff)
python3Packages.aioconsole: disable failing tests
Diffstat (limited to 'pkgs/development/python-modules/aioconsole')
-rw-r--r--pkgs/development/python-modules/aioconsole/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/aioconsole/default.nix b/pkgs/development/python-modules/aioconsole/default.nix
index 795b50d811668..14ff06324bbfc 100644
--- a/pkgs/development/python-modules/aioconsole/default.nix
+++ b/pkgs/development/python-modules/aioconsole/default.nix
@@ -17,7 +17,9 @@
 buildPythonPackage rec {
   pname = "aioconsole";
   version = "0.3.3";
-  disabled = pythonOlder "3.6";
+  format = "setuptools";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchFromGitHub {
     owner = "vxgmichel";
@@ -36,7 +38,13 @@ buildPythonPackage rec {
       --replace "--cov aioconsole --count 2" ""
   '';
 
-  pythonImportsCheck = [ "aioconsole" ];
+  disabledTests = [
+    "test_interact_syntax_error"
+  ];
+
+  pythonImportsCheck = [
+    "aioconsole"
+  ];
 
   meta = with lib; {
     description = "Asynchronous console and interfaces for asyncio";