about summary refs log tree commit diff
path: root/pkgs/development/python-modules/llfuse
diff options
context:
space:
mode:
authornyanloutre <paul@nyanlout.re>2020-12-07 19:24:35 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-12-07 11:34:10 -0800
commit42cfd52182cf0115cde8d291c1986ec45304538f (patch)
treecf5bfd07254228001177e37c8605500887e30970 /pkgs/development/python-modules/llfuse
parentd4de077c9b6f39366077b3e71d53c973bb32e811 (diff)
pythonPackages.llfuse: downgrade pytest version
Diffstat (limited to 'pkgs/development/python-modules/llfuse')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 1fa97d2949c94..e74a38a96e8f7 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, fetchpatch, buildPythonPackage, pkgconfig, pytest, fuse, attr, which
+{ stdenv, fetchurl, fetchpatch, buildPythonPackage, pkgconfig, pytest_5, fuse, attr, which
 , contextlib2, osxfuse
 }:
 
@@ -31,7 +31,7 @@ buildPythonPackage rec {
   buildInputs =
     optionals stdenv.isLinux [ fuse ]
     ++ optionals stdenv.isDarwin [ osxfuse ];
-  checkInputs = [ pytest which ] ++
+  checkInputs = [ pytest_5 which ] ++
     optionals stdenv.isLinux [ attr ];
 
   propagatedBuildInputs = [ contextlib2 ];