2018-10-08 06:45:51 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python3
|
2017-02-08 03:41:25 +01:00
|
|
|
, libnotify ? null }:
|
2017-01-27 00:28:40 +01:00
|
|
|
|
2018-10-08 06:45:51 +02:00
|
|
|
with python3.pkgs;
|
2018-04-29 06:34:38 +02:00
|
|
|
|
2018-10-08 06:45:51 +02:00
|
|
|
buildPythonApplication rec {
|
2019-02-11 23:10:39 +01:00
|
|
|
pname = "gcalcli";
|
2019-02-26 15:45:51 +01:00
|
|
|
version = "4.0.4";
|
2017-01-27 00:28:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-02-08 03:41:25 +01:00
|
|
|
owner = "insanum";
|
2019-02-11 23:10:39 +01:00
|
|
|
repo = pname;
|
2017-02-08 03:41:25 +01:00
|
|
|
rev = "v${version}";
|
2019-02-26 15:45:51 +01:00
|
|
|
sha256 = "0bl4cmc24iw12zn5mlj5qn141s2k2mzdixbcb92pfng4w2s4dq66";
|
2017-01-27 00:28:40 +01:00
|
|
|
};
|
|
|
|
|
2019-02-11 23:10:39 +01:00
|
|
|
postPatch = lib.optionalString stdenv.isLinux ''
|
|
|
|
substituteInPlace gcalcli/argparsers.py --replace \
|
|
|
|
"command = 'notify-send -u critical" \
|
|
|
|
"command = '${libnotify}/bin/notify-send -u critical"
|
|
|
|
'';
|
|
|
|
|
2018-04-29 06:34:38 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
dateutil gflags httplib2 parsedatetime six vobject
|
|
|
|
google_api_python_client oauth2client uritemplate
|
|
|
|
] ++ lib.optional (!isPy3k) futures;
|
2017-02-08 03:41:25 +01:00
|
|
|
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2018-04-29 06:34:38 +02:00
|
|
|
substituteInPlace $out/bin/gcalcli --replace \
|
|
|
|
"command = 'notify-send -u critical -a gcalcli %s'" \
|
|
|
|
"command = '${libnotify}/bin/notify-send -i view-calendar-upcoming-events -u critical -a Calendar %s'"
|
2017-02-08 03:41:25 +01:00
|
|
|
'';
|
2017-01-27 00:28:40 +01:00
|
|
|
|
2018-10-01 00:09:03 +02:00
|
|
|
# There are no tests as of 4.0.0a4
|
2018-04-29 06:34:38 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2017-01-27 00:28:40 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "CLI for Google Calendar";
|
2018-10-08 06:45:51 +02:00
|
|
|
homepage = https://github.com/insanum/gcalcli;
|
2017-01-27 00:28:40 +01:00
|
|
|
license = licenses.mit;
|
2017-02-08 03:41:25 +01:00
|
|
|
maintainers = with maintainers; [ nocoolnametom ];
|
|
|
|
inherit version;
|
2017-01-27 00:28:40 +01:00
|
|
|
};
|
|
|
|
}
|