python312Packages.icalendar: 5.0.10 -> 5.0.12

This commit is contained in:
R. Ryantm 2024-03-24 23:33:25 +00:00 committed by Nick Cao
parent cba6cf337c
commit f72e49025e
No known key found for this signature in database
1 changed files with 9 additions and 4 deletions

View File

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, setuptools
, backports-zoneinfo
, python-dateutil
, pytz
@ -10,18 +11,22 @@
}:
buildPythonPackage rec {
version = "5.0.10";
version = "5.0.12";
pname = "icalendar";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "collective";
repo = "icalendar";
rev = "refs/tags/v${version}";
hash = "sha256-sRsUjNClJ58kmCRiwSe7oq20eamj95Vwy/o0xPU8qPw=";
hash = "sha256-313NcknY2zad4lI+/P0szDVjEQ8VatnSiBiaG/Ta1Bw=";
};
propagatedBuildInputs = [
build-system = [
setuptools
];
dependencies = [
python-dateutil
pytz
] ++ lib.optionals (pythonOlder "3.9") [