python310Packages.holidays: 0.17.2 -> 0.18

Changelog: https://github.com/dr-prodigy/python-holidays/releases/tag/v.0.18
This commit is contained in:
Fabian Affolter 2022-12-29 16:15:55 +01:00
parent 4ec86b13c9
commit 1448b8f7a2

View file

@ -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";