Merge pull request #192538 from r-ryantm/auto-update/python3.10-cronsim

python310Packages.cronsim: 2.1 -> 2.2
This commit is contained in:
Mario Rodas 2022-09-23 21:22:54 -05:00 committed by GitHub
commit 50746ab0a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,22 +2,28 @@
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "cronsim";
version = "2.1";
version = "2.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-nwlSAbD+y0l9jyVSVShzWeC7nC5RZRD/kAhCi3Nd9xY=";
hash = "sha256-LMMZni8Cipo10mxAQbRadWpPvum76JQuzlrLvFvTt5o=";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "cronsim" ];
pythonImportsCheck = [
"cronsim"
];
meta = with lib; {
description = "Cron expression parser and evaluator";