From 37d23f6b9303fd43d85e445733d958d1c70db2d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 26 Nov 2023 16:29:06 -0800 Subject: [PATCH] python311Packages.recurring-ical-events: 2.1.0 -> 2.1.1 Diff: https://github.com/niccokunzmann/python-recurring-ical-events/compare/v2.1.0...v2.1.1 Changelog: https://github.com/niccokunzmann/python-recurring-ical-events/blob/v2.1.1/README.rst#changelog --- .../recurring-ical-events/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/recurring-ical-events/default.nix b/pkgs/development/python-modules/recurring-ical-events/default.nix index b6c20812d9cc..3ddc6bb4ccc9 100644 --- a/pkgs/development/python-modules/recurring-ical-events/default.nix +++ b/pkgs/development/python-modules/recurring-ical-events/default.nix @@ -1,6 +1,8 @@ { lib , buildPythonPackage +, pythonOlder , fetchFromGitHub +, setuptools , icalendar , pytz , python-dateutil @@ -13,17 +15,23 @@ buildPythonPackage rec { pname = "recurring-ical-events"; - version = "2.1.0"; + version = "2.1.1"; - format = "setuptools"; + disabled = pythonOlder "3.7"; + + pyproject = true; src = fetchFromGitHub { owner = "niccokunzmann"; repo = "python-recurring-ical-events"; rev = "v${version}"; - hash = "sha256-HNImooD6+hsMIfJX8LuHw1YyFIQNbY7dAjqdupPbhEE="; + hash = "sha256-I5D4CAk0C60H2hMBV62gOaIRA+wYF2ORKxHfWustQz0="; }; + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ icalendar pytz