about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-fuse/default.nix
blob: d9debce6aecb938439418d7dec535b35226455e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, pkgconfig
, fetchurl
, fuse
, buildPythonPackage
, isPy3k
}:

buildPythonPackage rec {
    baseName = "fuse";
    version = "0.2.1";
    name = "${baseName}-${version}";
    disabled = isPy3k;

    src = fetchurl {
      url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
      sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
    };

    nativeBuildInputs = [ pkgconfig ];
    buildInputs = [ fuse ];

    meta = {
      description = "Python bindings for FUSE";
      license = lib.licenses.lgpl21;
    };
}