84 lines
1.4 KiB
Nix
84 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
|
|
# build-system
|
|
, setuptools
|
|
|
|
# l10n
|
|
, polib
|
|
, lingua
|
|
, chameleon
|
|
|
|
# dependencies
|
|
, python-dateutil
|
|
|
|
# tests
|
|
, importlib-metadata
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "holidays";
|
|
version = "0.44";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vacanza";
|
|
repo = "python-holidays";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-RwM4RtFIUSaM/e4kiHOMg97lZ4VknB1pOqGRuIe2ns8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
|
|
# l10n
|
|
lingua
|
|
chameleon
|
|
polib
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs scripts/l10n/*.py
|
|
'';
|
|
|
|
preBuild = ''
|
|
# make l10n
|
|
./scripts/l10n/generate_po_files.py
|
|
./scripts/l10n/generate_mo_files.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
python-dateutil
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
importlib-metadata
|
|
polib
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"holidays"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Failure starting with 0.24
|
|
"test_l10n"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generate and work with holidays in Python";
|
|
homepage = "https://github.com/vacanza/python-holidays";
|
|
changelog = "https://github.com/vacanza/python-holidays/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab jluttine ];
|
|
};
|
|
}
|
|
|