From 1448b8f7a29bc208df83294b15de07b705761ef0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 29 Dec 2022 16:15:55 +0100 Subject: [PATCH] python310Packages.holidays: 0.17.2 -> 0.18 Changelog: https://github.com/dr-prodigy/python-holidays/releases/tag/v.0.18 --- pkgs/development/python-modules/holidays/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/holidays/default.nix b/pkgs/development/python-modules/holidays/default.nix index c163ae26a9e7..b9ac7ea4dbdb 100644 --- a/pkgs/development/python-modules/holidays/default.nix +++ b/pkgs/development/python-modules/holidays/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "holidays"; - version = "0.17.2"; + version = "0.18"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-EWBFNfZq2dj4TlHBcQKWDof8OBn4RESvaLHrh1aGZjA="; + hash = "sha256-6U2dNTb/Gipw1tL1bLBV65qV0LmjpfuBuej5024zN4k="; }; propagatedBuildInputs = [ @@ -36,6 +36,10 @@ buildPythonPackage rec { "holidays" ]; + disabledTestPaths = [ + "test/test_imports.py" + ]; + meta = with lib; { description = "Generate and work with holidays in Python"; homepage = "https://github.com/dr-prodigy/python-holidays";