about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2021-11-28 23:46:11 -0800
committerJonathan Ringer <jonringer117@gmail.com>2021-11-30 18:52:46 -0800
commitd20fc633dbac10fed609325f1748ec2df9c05108 (patch)
treea2d8573dabb436219dcf963d21c3b922f585fdea /pkgs/development/python-modules/fs
parentde93eeee943ed09ab95eeb6e243b03cbf5ef6a2d (diff)
python3Packages.fs: disable tests due to cyclic dependencies with parameterized
Diffstat (limited to 'pkgs/development/python-modules/fs')
-rw-r--r--pkgs/development/python-modules/fs/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fs/default.nix b/pkgs/development/python-modules/fs/default.nix
index ac7fae213b003..0ab3778f55cf4 100644
--- a/pkgs/development/python-modules/fs/default.nix
+++ b/pkgs/development/python-modules/fs/default.nix
@@ -28,6 +28,9 @@ buildPythonPackage rec {
   };
 
   buildInputs = [ glibcLocales ];
+
+  # strong cycle with paramaterized
+  doCheck = false;
   checkInputs = [ pyftpdlib mock psutil pytestCheckHook ];
   propagatedBuildInputs = [ six appdirs pytz ]
     ++ lib.optionals (!isPy3k) [ backports_os ]