nixpkgs-suyu/pkgs/development/python-modules/goobook/default.nix
R. RyanTM 9be4c678ff python37Packages.goobook: 3.3 -> 3.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-goobook/versions
2019-10-07 01:26:38 -07:00

24 lines
682 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, google_api_python_client, simplejson, oauth2client
}:
buildPythonPackage rec {
pname = "goobook";
version = "3.4";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "089a95s6g9izsy1fzpz48p6pz0wpngcbbrvsillm1n53492gfhjg";
};
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; [ primeos ];
platforms = platforms.unix;
};
}