macfuse-stubs: init at 4.0.4

replaces osxfuse 3.8.3
This commit is contained in:
midchildan
2021-01-02 01:02:32 +09:00
parent 85141b8609
commit fa6c8b656b
8 changed files with 66 additions and 60 deletions

View File

@@ -1,5 +1,5 @@
{ lib, stdenv, fetchPypi, fetchpatch, buildPythonPackage, pkg-config, pytest, fuse, attr, which
, contextlib2, osxfuse
, contextlib2, macfuse-stubs
}:
buildPythonPackage rec {
@@ -23,7 +23,7 @@ buildPythonPackage rec {
buildInputs =
lib.optionals stdenv.isLinux [ fuse ]
++ lib.optionals stdenv.isDarwin [ osxfuse ];
++ lib.optionals stdenv.isDarwin [ macfuse-stubs ];
checkInputs = [ pytest which ] ++
lib.optionals stdenv.isLinux [ attr ];