nixpkgs/pkgs/development/python-modules/hdate/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

62 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 = {
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 = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ fab ];
};
}