about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorHendrik Bunke <h.bunke@zbw.eu>2015-04-28 12:24:28 +0200
committerHendrik Bunke <h.bunke@zbw.eu>2015-04-28 12:24:28 +0200
commit27ea35b4819cbcdfc9365f18504c5d1650b51f3a (patch)
tree6177a6ba9598afd2e18582f34bd1187b86521cd1 /pkgs
parent69116f8fc93edf64c641c4f6dd74d65c86b9bd11 (diff)
downloadnixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar.gz
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar.bz2
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar.lz
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar.xz
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.tar.zst
nixlib-27ea35b4819cbcdfc9365f18504c5d1650b51f3a.zip
pythonPackages: fixed and updated goobook
goobook didn't work because dependency package 'six' has been in buildInputs
but should be in propagatedBuildInputs.

Also: updated goobook to 1.6
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 0f224aae2f30..03e120dbea12 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5638,7 +5638,7 @@ let
   };
 
   goobook = buildPythonPackage rec {
-    name = "goobook-1.5";
+    name = "goobook-1.6";
     disabled = isPy3k;
 
     src = pkgs.fetchurl {
@@ -5646,7 +5646,7 @@ let
       sha256 = "05vpriy391l5i05ckl5ja5bswqyvl3rwrbmks9pi46w1813j7p5z";
     };
 
-    buildInputs = with self; [ six ];
+    buildInputs = with self; [ ];
 
     preConfigure = ''
       sed -i '/distribute/d' setup.py
@@ -5656,11 +5656,11 @@ let
       description = "Search your google contacts from the command-line or mutt";
       homepage    = https://pypi.python.org/pypi/goobook;
       license     = licenses.gpl3;
-      maintainers = with maintainers; [ lovek323 ];
+      maintainers = with maintainers; [ lovek323 hbunke ];
       platforms   = platforms.unix;
     };
 
-    propagatedBuildInputs = with self; [ gdata hcs_utils keyring simplejson ];
+    propagatedBuildInputs = with self; [ gdata hcs_utils keyring simplejson six];
   };
 
   google_api_python_client = buildPythonPackage rec {