7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "1gg69qfi9pjcic3g98l8ya64rw2vc1bp8gsf76my6gglq8z7izvj";
16 propagatedBuildInputs = [ pkgs.fuse ];
22 substituteInPlace fuse.py --replace \
23 "find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'"
27 description = "Simple ctypes bindings for FUSE";
29 Python module that provides a simple interface to FUSE and MacFUSE.
30 It's just one file and is implemented using ctypes.
32 homepage = "https://github.com/terencehonles/fusepy";
33 license = licenses.isc;
34 platforms = platforms.unix;