mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
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
This commit is contained in:
parent
69116f8fc9
commit
27ea35b481
1 changed files with 4 additions and 4 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue