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