lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.fuse: fix expression

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