From e77db89c578be0d62066db67f5694e300da77cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 15 Mar 2025 23:42:34 -0700 Subject: [PATCH] python313Packages.ical: 9.0.0 -> 9.0.1 Diff: https://github.com/allenporter/ical/compare/refs/tags/9.0.0...9.0.1 Changelog: https://github.com/allenporter/ical/releases/tag/9.0.1 --- pkgs/development/python-modules/ical/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/ical/default.nix b/pkgs/development/python-modules/ical/default.nix index 104a9842ac9c..e2a150d38092 100644 --- a/pkgs/development/python-modules/ical/default.nix +++ b/pkgs/development/python-modules/ical/default.nix @@ -17,16 +17,16 @@ buildPythonPackage rec { pname = "ical"; - version = "9.0.0"; + version = "9.0.1"; pyproject = true; - disabled = pythonOlder "3.10"; + disabled = pythonOlder "3.11"; src = fetchFromGitHub { owner = "allenporter"; repo = "ical"; tag = version; - hash = "sha256-uAk+VYrcifRkUBLcXjBPwxrOlo1EKQUnPjUmR7+9cVo="; + hash = "sha256-VaFzN/Yzo0Ad1vsuZJ4P8+WWH+GtPJGOz3PWum8rLww="; }; build-system = [ setuptools ]; @@ -48,11 +48,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "ical" ]; - meta = with lib; { + meta = { description = "Library for handling iCalendar"; homepage = "https://github.com/allenporter/ical"; changelog = "https://github.com/allenporter/ical/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ dotlambda ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ dotlambda ]; }; }