1{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
2
3buildPythonPackage rec {
4 pname = "fuse-python";
5 version = "1.0.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "b9a69c38b3909ffd35d77cb1a73ebfdc3a103a6d4cdd20c86c70ed1141771580";
10 };
11
12 buildInputs = [ fuse ];
13 nativeBuildInputs = [ pkg-config ];
14
15 # no tests implemented
16 doCheck = false;
17
18 pythonImportsCheck = [ "fuse" ];
19
20 meta = with lib; {
21 description = "Python bindings for FUSE";
22 homepage = "https://github.com/libfuse/python-fuse";
23 license = licenses.lgpl21;
24 maintainers = with maintainers; [ psyanticy ];
25 };
26}