about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-01-01 11:49:07 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-01-01 11:49:07 +0100
commit49f6274ab5a707a787ea16ccce348047e40c7599 (patch)
tree8faeca378ab8e729af0619cd24e1a2bbdfcea76c /pkgs/development/python-modules
parentbfa787ab4715ae8c16d4b08023d37ebd2aef12de (diff)
downloadnixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar.gz
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar.bz2
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar.lz
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar.xz
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.tar.zst
nixlib-49f6274ab5a707a787ea16ccce348047e40c7599.zip
python.pkgs.fuse: fix expression
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/python-fuse/default.nix28
1 files changed, 14 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/python-fuse/default.nix b/pkgs/development/python-modules/python-fuse/default.nix
index d9debce6aecb..02b86b3b33a3 100644
--- a/pkgs/development/python-modules/python-fuse/default.nix
+++ b/pkgs/development/python-modules/python-fuse/default.nix
@@ -7,21 +7,21 @@
 }:
 
 buildPythonPackage rec {
-    baseName = "fuse";
-    version = "0.2.1";
-    name = "${baseName}-${version}";
-    disabled = isPy3k;
+  pname = "fuse";
+  version = "0.2.1";
 
-    src = fetchurl {
-      url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
-      sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
-    };
+  disabled = isPy3k;
 
-    nativeBuildInputs = [ pkgconfig ];
-    buildInputs = [ fuse ];
+  src = fetchurl {
+    url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
+    sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
+  };
 
-    meta = {
-      description = "Python bindings for FUSE";
-      license = lib.licenses.lgpl21;
-    };
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ fuse ];
+
+  meta = {
+    description = "Python bindings for FUSE";
+    license = lib.licenses.lgpl21;
+  };
 }