1{ lib
2, pkgconfig
3, fetchurl
4, fuse
5, buildPythonPackage
6, isPy3k
7}:
8
9buildPythonPackage rec {
10 pname = "fuse";
11 version = "0.2.1";
12
13 disabled = isPy3k;
14
15 src = fetchurl {
16 url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
17 sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
18 };
19
20 nativeBuildInputs = [ pkgconfig ];
21 buildInputs = [ fuse ];
22
23 meta = {
24 description = "Python bindings for FUSE";
25 license = lib.licenses.lgpl21;
26 };
27}