gcalcli: 4.0.4 -> 4.1.0

This commit is contained in:
Peter Hoeg 2019-04-30 17:14:11 +08:00
parent dfd8f84aef
commit 22f97005ae

View File

@ -5,32 +5,26 @@ with python3.pkgs;
buildPythonApplication rec { buildPythonApplication rec {
pname = "gcalcli"; pname = "gcalcli";
version = "4.0.4"; version = "4.1.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "insanum"; owner = "insanum";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0bl4cmc24iw12zn5mlj5qn141s2k2mzdixbcb92pfng4w2s4dq66"; sha256 = "06iijpwlvvn8bj81s4znhykilvwvydxjmzd3d4nsa5j2kj3iwshi";
}; };
postPatch = lib.optionalString stdenv.isLinux '' postPatch = lib.optionalString stdenv.isLinux ''
substituteInPlace gcalcli/argparsers.py --replace \ substituteInPlace gcalcli/argparsers.py \
"command = 'notify-send -u critical" \ --replace "'notify-send" "'${libnotify}/bin/notify-send"
"command = '${libnotify}/bin/notify-send -u critical"
''; '';
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil gflags httplib2 parsedatetime six vobject dateutil gflags httplib2 parsedatetime six vobject
google_api_python_client oauth2client uritemplate google_api_python_client oauth2client uritemplate
libnotify
] ++ lib.optional (!isPy3k) futures; ] ++ lib.optional (!isPy3k) futures;
postInstall = lib.optionalString stdenv.isLinux ''
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'"
'';
# There are no tests as of 4.0.0a4 # There are no tests as of 4.0.0a4
doCheck = false; doCheck = false;