about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fs
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-12-06 10:00:54 -0800
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-12-07 08:38:50 -0800
commitf70e16600e5005552df8b3a279d6a5db47ed0334 (patch)
treea8baad17b57d7a83d4387d502019b5d745832592 /pkgs/development/python-modules/fs
parent09f724249ca0c0eb64aa78520c5bc356d071a120 (diff)
python39Package.fs: fix tests
Diffstat (limited to 'pkgs/development/python-modules/fs')
-rw-r--r--pkgs/development/python-modules/fs/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fs/default.nix b/pkgs/development/python-modules/fs/default.nix
index 77aee7a3bdfe5..1f784a06e2eaa 100644
--- a/pkgs/development/python-modules/fs/default.nix
+++ b/pkgs/development/python-modules/fs/default.nix
@@ -47,6 +47,10 @@ buildPythonPackage rec {
     "user_data_repr"
   ] ++ lib.optionals (stdenv.isDarwin) [ # remove if https://github.com/PyFilesystem/pyfilesystem2/issues/430#issue-707878112 resolved
     "test_ftpfs"
+  ] ++ lib.optionals (pythonAtLeast "3.9") [
+    # update friend version of this commit: https://github.com/PyFilesystem/pyfilesystem2/commit/3e02968ce7da7099dd19167815c5628293e00040
+    # merged into master, able to be removed after >2.4.1
+    "test_copy_sendfile"
   ];
 
   __darwinAllowLocalNetworking = true;