python310Packages.ical: 4.5.4 -> 5.0.0

Diff: https://github.com/allenporter/ical/compare/refs/tags/4.5.4...5.0.0

Changelog: https://github.com/allenporter/ical/releases/tag/5.0.0
This commit is contained in:
Robert Schütz 2023-07-18 10:33:42 -07:00
parent 8585837862
commit 6a38b23704

View file

@ -5,7 +5,6 @@
, fetchFromGitHub
, freezegun
, tzdata
, py
, pyparsing
, pydantic
, pytest-asyncio
@ -19,16 +18,16 @@
buildPythonPackage rec {
pname = "ical";
version = "4.5.4";
version = "5.0.0";
format = "setuptools";
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "allenporter";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-UcuJ23yzpRHDUFlwov692UyLXP/9Qb4F+IJIszo12/M=";
hash = "sha256-6xDbr/y9ZNT9thWMLHPi9/EXVXrUdMCVJdQAcd3G2vo=";
};
nativeBuildInputs = [
@ -49,7 +48,6 @@ buildPythonPackage rec {
nativeCheckInputs = [
freezegun
py
pytest-asyncio
pytest-benchmark
pytest-golden