567e8dfd8e
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>
48 lines
1.2 KiB
Nix
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 = pname;
|
|
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 ];
|
|
};
|
|
}
|