python313Packages.model-checker: 0.8.25 -> 0.9.11

This commit is contained in:
Fabian Affolter
2025-04-14 22:42:31 +02:00
parent 96a52f7775
commit 4f02d3a518
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
networkx,
pythonOlder,
setuptools,
tqdm,
@@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "model-checker";
version = "0.8.25";
version = "0.9.11";
pyproject = true;
disabled = pythonOlder "3.8";
@@ -18,7 +19,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "model_checker";
inherit version;
hash = "sha256-4SQRapViYU0uCtKEhXHpNXcJQBplE6r40ChzeTrX0/c=";
hash = "sha256-MZchcU9ijdHF9bLF4dwF71fqRNuRO9+vF54dJsVZzyY=";
};
# z3 does not provide a dist-info, so python-runtime-deps-check will fail
@@ -27,6 +28,7 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [
networkx
tqdm
z3-solver
];