python3Packages.holidays: 0.85 -> 0.89

https://github.com/vacanza/holidays/blob/v0.89/CHANGES.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:19:16 +01:00
parent f31a27d3c1
commit 13716aff67
@@ -8,6 +8,7 @@
numpy,
polib,
pytest-cov-stub,
pytest-xdist,
pytestCheckHook,
python-dateutil,
setuptools,
@@ -15,14 +16,14 @@
buildPythonPackage rec {
pname = "holidays";
version = "0.85";
version = "0.89";
pyproject = true;
src = fetchFromGitHub {
owner = "vacanza";
repo = "python-holidays";
tag = "v${version}";
hash = "sha256-ExleK66foB2Q/KK7zcPJ16q4ucz3gOkntB2SQETfHqk=";
hash = "sha256-g7f0364Xxz+jTjgA8y0nEPbzNalQdMLdwoBZ2odq1W0=";
};
build-system = [
@@ -36,6 +37,10 @@ buildPythonPackage rec {
postPatch = ''
patchShebangs scripts/l10n/*.py
# generating l10n files imports holidays before distinfo metadata exists
substituteInPlace holidays/version.py \
--replace-fail 'version("holidays")' '"${version}"'
'';
preBuild = ''
@@ -51,6 +56,7 @@ buildPythonPackage rec {
numpy
polib
pytest-cov-stub
pytest-xdist
pytestCheckHook
];