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