summary refs log tree commit diff
path: root/pkgs/development/python-modules/llfuse
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-01-05 11:54:27 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2019-01-15 10:16:12 +0100
commit5a3670b83c238e1e42102b2e032566eea8c37cea (patch)
tree6290e12bd12231fb8a36453374821ca9fe757eda /pkgs/development/python-modules/llfuse
parent15396247ca4b3a39987d799f3ee217bf490caf45 (diff)
downloadnixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar.gz
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar.bz2
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar.lz
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar.xz
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.tar.zst
nixpkgs-5a3670b83c238e1e42102b2e032566eea8c37cea.zip
pythonPackages: fix native / check inputs
Diffstat (limited to 'pkgs/development/python-modules/llfuse')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 78daa85ea80..21ea6de02f1 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -13,17 +13,15 @@ buildPythonPackage rec {
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ pytest fuse attr which ];
+  buildInputs = [ fuse ];
+  checkInputs = [ pytest attr which ];
 
   propagatedBuildInputs = [ contextlib2 ];
 
   checkPhase = ''
-    py.test
+    py.test -k "not test_listdir"
   '';
 
-  # FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin'
-  doCheck = false;
-
   meta = with stdenv.lib; {
     description = "Python bindings for the low-level FUSE API";
     homepage = https://code.google.com/p/python-llfuse/;