nixpkgs/pkgs/development/python-modules/python-fuse/default.nix

28 lines
483 B
Nix
Raw Normal View History

{ lib
, pkgconfig
, fetchurl
, fuse
, buildPythonPackage
, isPy3k
}:
buildPythonPackage rec {
2018-01-01 10:49:07 +00:00
pname = "fuse";
version = "0.2.1";
2018-01-01 10:49:07 +00:00
disabled = isPy3k;
2018-01-01 10:49:07 +00:00
src = fetchurl {
url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
};
2018-01-01 10:49:07 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse ];
meta = {
description = "Python bindings for FUSE";
license = lib.licenses.lgpl21;
};
}