add package python-fuse
This commit is contained in:
parent
0ab4328279
commit
9b91fc81a3
@ -752,6 +752,24 @@ let pythonPackages = python.modules // rec {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
fuse = buildPythonPackage (rec {
|
||||||
|
baseName = "fuse";
|
||||||
|
version = "0.2.1";
|
||||||
|
name = "${baseName}-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://downloads.sourceforge.net/sourceforge/fuse/fuse-python-${version}.tar.gz";
|
||||||
|
sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgs.pkgconfig pkgs.fuse ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Python bindings for FUSE.";
|
||||||
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
genshi = buildPythonPackage {
|
genshi = buildPythonPackage {
|
||||||
name = "genshi-0.6";
|
name = "genshi-0.6";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user