python3Packages.cronsim: 2.6 -> 2.7

https://github.com/cuu508/cronsim/compare/2.6...2.7
This commit is contained in:
Martin Weinelt
2025-11-15 15:03:21 +01:00
parent b77db08fe1
commit 6f5d8c2782
@@ -2,24 +2,24 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "cronsim";
version = "2.6";
format = "setuptools";
disabled = pythonOlder "3.7";
version = "2.7";
pyproject = true;
src = fetchFromGitHub {
owner = "cuu508";
repo = "cronsim";
tag = version;
hash = "sha256-WJ3v2cqAKZkXp1u8xJ0aFuyHPq0gn24DRxpnq5cH/90=";
hash = "sha256-9TextQcZAX5Ri6cc+Qd4T+u8XjxriqoTsy/9/G8XDAM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "cronsim" ];