depot/third_party/nixpkgs/pkgs/applications/misc/gcalcli/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

38 lines
973 B
Nix

{ stdenv, lib, fetchFromGitHub, python3
, libnotify ? null }:
with python3.pkgs;
buildPythonApplication rec {
pname = "gcalcli";
version = "4.2.0";
src = fetchFromGitHub {
owner = "insanum";
repo = pname;
rev = "v${version}";
sha256 = "0746vmhfclkpkqnyaidxid2z20mlv86hv0pjxy1qglrja91vkd72";
};
postPatch = lib.optionalString stdenv.isLinux ''
substituteInPlace gcalcli/argparsers.py \
--replace "'notify-send" "'${libnotify}/bin/notify-send"
'';
propagatedBuildInputs = [
dateutil gflags httplib2 parsedatetime six vobject
google_api_python_client oauth2client uritemplate
libnotify
] ++ lib.optional (!isPy3k) futures;
# There are no tests as of 4.0.0a4
doCheck = false;
meta = with lib; {
description = "CLI for Google Calendar";
homepage = "https://github.com/insanum/gcalcli";
license = licenses.mit;
maintainers = with maintainers; [ nocoolnametom ];
inherit version;
};
}