Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8d84ba7037c0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 805e89ce32fc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 27, 2018

  1. python3Packages.goobook: 3.1 -> 3.3

    Unfortunately this package was unmaintained for years, which is why I
    had to change quite some stuff (it's probably still not perfect) and set
    myself as maintainer (replacing the existing ones, which maintained it
    until version 1.9).
    primeos committed Dec 27, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    805e89c View commit details
Showing with 7 additions and 22 deletions.
  1. +7 −22 pkgs/development/python-modules/goobook/default.nix
29 changes: 7 additions & 22 deletions pkgs/development/python-modules/goobook/default.nix
Original file line number Diff line number Diff line change
@@ -1,39 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, oauth2client
, gdata
, google_api_python_client
, simplejson
, httplib2
, keyring
, six
, rsa
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, google_api_python_client, simplejson, oauth2client
}:

buildPythonPackage rec {
pname = "goobook";
version = "3.1";
disabled = isPy3k;
version = "3.3";
disabled = !isPy3k;

src = fetchPypi {
inherit pname version;
sha256 = "139a98d646d5c5963670944d5cfcc1a107677ee11fa98329221bd600457fda6d";
sha256 = "0sanlki1rcqvhbds7a049v2kzglgpm761i728115mdracw0s6i3h";
};

propagatedBuildInputs = [ oauth2client gdata google_api_python_client simplejson httplib2 keyring six rsa ];

preConfigure = ''
sed -i '/distribute/d' setup.py
'';
propagatedBuildInputs = [ google_api_python_client simplejson oauth2client ];

meta = with stdenv.lib; {
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 hbunke ];
maintainers = with maintainers; [ primeos ];
platforms = platforms.unix;
};

}