about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-fuse/default.nix
blob: 02b86b3b33a38b70069f26560850b4128ec7d406 (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 {
  pname = "fuse";
  version = "0.2.1";

  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;
  };
}