nixpkgs/pkgs/applications/misc/gcalcli/default.nix

39 lines
971 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, python3
, libnotify ? null }:
2017-01-26 23:28:40 +00:00
with python3.pkgs;
buildPythonApplication rec {
2019-02-11 22:10:39 +00:00
pname = "gcalcli";
2019-05-30 13:23:39 +01:00
version = "4.1.1";
2017-01-26 23:28:40 +00:00
src = fetchFromGitHub {
owner = "insanum";
2019-02-11 22:10:39 +00:00
repo = pname;
rev = "v${version}";
2019-05-30 13:23:39 +01:00
sha256 = "1qlmslywm4dfimggly4p0ckn2gj165mq1p0wkry9jpb3sg1m5fdf";
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
'';
propagatedBuildInputs = [
dateutil gflags httplib2 parsedatetime six vobject
google_api_python_client oauth2client uritemplate
2019-04-30 10:14:11 +01:00
libnotify
] ++ lib.optional (!isPy3k) futures;
# There are no tests as of 4.0.0a4
doCheck = false;
2017-01-26 23:28:40 +00:00
meta = with lib; {
description = "CLI for Google Calendar";
homepage = https://github.com/insanum/gcalcli;
2017-01-26 23:28:40 +00:00
license = licenses.mit;
maintainers = with maintainers; [ nocoolnametom ];
inherit version;
2017-01-26 23:28:40 +00:00
};
}