summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorAndrey Golovizin <ag@sologoc.com>2020-12-07 22:52:38 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-12-08 12:27:01 -0800
commit799e33084b6f4580278790d7335a004c4ac80d68 (patch)
treea097bd28168801445d70162811970eebefbb2efb /pkgs
parentb445bc62b791e3a97321d7682931965c2bdcdfe7 (diff)
Revert "pythonPackages.llfuse: downgrade pytest version"
Diffstat (limited to 'pkgs')
-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 d82f35782c1c..ac9360cb02df 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkgconfig, pytest_5, fuse, attr, which
+{ stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkgconfig, pytest, fuse, attr, which
, contextlib2, osxfuse
}:
@@ -27,7 +27,7 @@ buildPythonPackage rec {
buildInputs =
optionals stdenv.isLinux [ fuse ]
++ optionals stdenv.isDarwin [ osxfuse ];
- checkInputs = [ pytest_5 which ] ++
+ checkInputs = [ pytest which ] ++
optionals stdenv.isLinux [ attr ];
propagatedBuildInputs = [ contextlib2 ];