a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
52 lines
1,003 B
Nix
52 lines
1,003 B
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, ical
|
|
, pydantic
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gcal-sync";
|
|
version = "4.1.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allenporter";
|
|
repo = "gcal_sync";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-dmxqN0SE/qAu07ilBnVdV8k3hvpfUPLMtIfqlhSg20U=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
ical
|
|
pydantic
|
|
];
|
|
|
|
checkInputs = [
|
|
freezegun
|
|
pytest-aiohttp
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"gcal_sync"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for syncing Google Calendar to local storage";
|
|
homepage = "https://github.com/allenporter/gcal_sync";
|
|
changelog = "https://github.com/allenporter/gcal_sync/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
};
|
|
}
|