python3Packages.holidays: 0.29 -> 0.32

This commit is contained in:
Martin Weinelt 2023-09-15 14:06:17 +02:00
parent 2505ae8a42
commit 5d0ae485dc

View file

@ -4,6 +4,7 @@
, fetchFromGitHub
, hijri-converter
, korean-lunar-calendar
, polib
, pytestCheckHook
, python-dateutil
, pythonOlder
@ -11,7 +12,7 @@
buildPythonPackage rec {
pname = "holidays";
version = "0.29";
version = "0.32";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "dr-prodigy";
repo = "python-holidays";
rev = "refs/tags/v.${version}";
hash = "sha256-ijhqu0LzQzpjDSe9ZjNhgdjq/DJuD7oVbRTLX97nGHM=";
hash = "sha256-YAh5gR4KcUgXzeXy3xyGeokDFsyd9FqRQ5j1TC6wCQY=";
};
propagatedBuildInputs = [
@ -31,6 +32,7 @@ buildPythonPackage rec {
];
nativeCheckInputs = [
polib
pytestCheckHook
];