Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gcalcli: 4.4.0 -> 4.5.1 #352984

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 20 additions & 22 deletions pkgs/applications/misc/gcalcli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,49 +2,47 @@
stdenv,
lib,
fetchFromGitHub,
nix-update-script,
python3Packages,
libnotify,
}:

python3Packages.buildPythonApplication rec {
pname = "gcalcli";
version = "4.4.0";
version = "4.5.1";
pyproject = true;

src = fetchFromGitHub {
owner = "insanum";
repo = "gcalcli";
rev = "refs/tags/v${version}";
hash = "sha256-X9sgnujHMbmrt7cpcBOvTycIKFz3G2QzNDt3me5GUrQ=";
hash = "sha256-FU1EHLQ+/2sOGeeGwONsrV786kHTFfMel7ocBcCe+rI=";
};

postPatch =
''
# dev dependencies
substituteInPlace pyproject.toml \
--replace-fail "\"google-api-python-client-stubs\"," "" \
--replace-fail "\"types-python-dateutil\"," "" \
--replace-fail "\"types-requests\"," "" \
--replace-fail "\"types-vobject\"," ""
''
+ lib.optionalString stdenv.hostPlatform.isLinux ''
substituteInPlace gcalcli/argparsers.py \
--replace-fail "'notify-send" "'${lib.getExe libnotify}"
'';

build-system = with python3Packages; [ setuptools ];
updateScript = nix-update-script { };

postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
substituteInPlace gcalcli/argparsers.py \
--replace-fail "'notify-send" "'${lib.getExe libnotify}"
'';

build-system = with python3Packages; [ setuptools-scm ];

dependencies = with python3Packages; [
argcomplete
python-dateutil
babel
gflags
httplib2
parsedatetime
vobject
google-api-python-client
google-auth-oauthlib
uritemplate
httplib2
libnotify
parsedatetime
platformdirs
pydantic
python-dateutil
truststore
uritemplate
vobject
];

nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
Expand Down