summary refs log tree commit diff
path: root/pkgs/development/python-modules/goobook/default.nix
blob: f8daf66c1564357f854c4bae0c4d3f8920f3e1fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, google_api_python_client, simplejson, oauth2client, setuptools
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "089a95s6g9izsy1fzpz48p6pz0wpngcbbrvsillm1n53492gfhjg";
  };

  propagatedBuildInputs = [
    google_api_python_client simplejson oauth2client setuptools
  ];

  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; [ primeos ];
    platforms   = platforms.unix;
  };
}