Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.1 KiB
Nix

{
lib,
astral,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
num2words,
pdm-backend,
pytest-timeout,
pytest-xdist,
pytestCheckHook,
syrupy,
}:
buildPythonPackage rec {
pname = "hdate";
version = "1.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "py-libhdate";
repo = "py-libhdate";
tag = "v${version}";
hash = "sha256-nM9LHcXuDpQ2j4ACF6W5H3iTJcKdbcY4bkbumIkKyeE=";
};
pythonRelaxDeps = [
"astral"
];
build-system = [
pdm-backend
];
dependencies = [
num2words
];
optional-dependencies = {
astral = [ astral ];
};
nativeCheckInputs = [
hypothesis
pytest-timeout
pytest-xdist
pytestCheckHook
syrupy
];
enabledTestPaths = [ "tests" ];
pythonImportsCheck = [ "hdate" ];
meta = with lib; {
description = "Python module for Jewish/Hebrew date and Zmanim";
homepage = "https://github.com/py-libhdate/py-libhdate";
changelog = "https://github.com/py-libhdate/py-libhdate/blob/${src.tag}/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ fab ];
};
}