Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fusepy / default.nix
blob8c51fcebe559df5a37a26f77158af4cefb234cd9
1 { lib
2 , stdenv
3 , buildPythonPackage
4 , fetchPypi
5 , pkgs
6 }:
8 buildPythonPackage rec {
9   pname = "fusepy";
10   version = "3.0.1";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "1gg69qfi9pjcic3g98l8ya64rw2vc1bp8gsf76my6gglq8z7izvj";
16   };
18   propagatedBuildInputs = [ pkgs.fuse ];
20   # No tests included
21   doCheck = false;
23   # On macOS, users are expected to install macFUSE. This means fusepy should
24   # be able to find libfuse in /usr/local/lib.
25   patchPhase = lib.optionalString (!stdenv.isDarwin) ''
26     substituteInPlace fuse.py --replace \
27       "find_library('fuse')" "'${pkgs.fuse}/lib/libfuse.so'"
28   '';
30   meta = with lib; {
31     description = "Simple ctypes bindings for FUSE";
32     longDescription = ''
33       Python module that provides a simple interface to FUSE and MacFUSE.
34       It's just one file and is implemented using ctypes.
35     '';
36     homepage = "https://github.com/terencehonles/fusepy";
37     license = licenses.isc;
38     platforms = platforms.unix;
39   };