10 buildPythonPackage rec {
11 pname = "fuse-python";
13 format = "setuptools";
16 inherit pname version;
17 hash = "sha256-MhiAY2UkCM1HKuu2+S0135LIu0IAk3H4yJJ7s35r3Rs=";
20 buildInputs = [ fuse ];
21 nativeBuildInputs = [ pkg-config ];
23 # no tests implemented
26 pythonImportsCheck = [ "fuse" ];
29 broken = stdenv.hostPlatform.isDarwin;
30 description = "Python bindings for FUSE";
31 homepage = "https://github.com/libfuse/python-fuse";
32 license = licenses.lgpl21;
33 maintainers = with maintainers; [ psyanticy ];