aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/goobook/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/goobook/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/goobook/default.nix26
1 files changed, 18 insertions, 8 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/goobook/default.nix b/nixpkgs/pkgs/development/python-modules/goobook/default.nix
index ac658b1940f..e183e79f570 100644
--- a/nixpkgs/pkgs/development/python-modules/goobook/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/goobook/default.nix
@@ -1,27 +1,37 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
-, google_api_python_client, simplejson, oauth2client, setuptools
+, docutils, installShellFiles
+, google_api_python_client, simplejson, oauth2client, setuptools, xdg
}:
buildPythonPackage rec {
pname = "goobook";
- version = "3.4";
+ version = "3.5";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "089a95s6g9izsy1fzpz48p6pz0wpngcbbrvsillm1n53492gfhjg";
+ sha256 = "1rmfyma3gwdf5mrw4l3j66y86fy8hgdbd0z4a5kck0kcm3hy34j9";
};
- # Required for a breaking change in google-api-python-client 1.8.1:
- patches = [ ./fix-build.patch ];
-
+ nativeBuildInputs = [ docutils installShellFiles ];
propagatedBuildInputs = [
- google_api_python_client simplejson oauth2client setuptools
+ google_api_python_client simplejson oauth2client setuptools xdg
];
+ postInstall = ''
+ rst2man goobook.1.rst goobook.1
+ installManPage goobook.1
+ '';
+
meta = with stdenv.lib; {
- description = "Search your google contacts from the command-line or mutt";
+ description = "Access your Google contacts from the command line";
+ longDescription = ''
+ The purpose of GooBook is to make it possible to use your Google Contacts
+ from the command-line and from MUAs such as Mutt.
+ It can be used from Mutt the same way as abook.
+ '';
homepage = "https://pypi.python.org/pypi/goobook";
+ changelog = "https://gitlab.com/goobook/goobook/-/blob/${version}/CHANGES.rst";
license = licenses.gpl3;
maintainers = with maintainers; [ primeos ];
platforms = platforms.unix;