Files
nixpkgs/pkgs/development/python-modules/cron-converter/default.nix
Peder Bergebakken Sundt f908f5fa38 treewide: substitute pname for strings (python-modules)
repeat of #410679 limited to `pkgs/development/python-modules/`, part of #346453
2026-04-20 01:41:56 +02:00

48 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
setuptools,
python-dateutil,
python,
}:
buildPythonPackage rec {
pname = "cron-converter";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Sonic0";
repo = "cron-converter";
rev = "v${version}";
hash = "sha256-zNDEBckvSwnqBfNyh5Gv7ICOsPaSx2NKl92ZlyDfukw=";
};
postPatch = ''
# Timezone does not match
substituteInPlace tests/integration/tests_cron_seeker.py \
--replace-fail "test_timezone" "dont_test_timezone"
'';
build-system = [ setuptools ];
dependencies = [ python-dateutil ];
checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest discover -s tests/unit -v
${python.interpreter} -m unittest discover -s tests/integration -v
runHook postCheck
'';
pythonImportsCheck = [ "cron_converter" ];
meta = {
description = "Cron string parser and iteration for the datetime object with a cron like format";
homepage = "https://github.com/Sonic0/cron-converter";
changelog = "https://github.com/Sonic0/cron-converter/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ b4dm4n ];
};
}