Files
nixpkgs/pkgs/development/python-modules/simpy/default.nix

65 lines
1.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
isPy27,
fetchPypi,
setuptools,
setuptools-scm,
py,
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage rec {
pname = "simpy";
version = "4.1.1";
pyproject = true;
disabled = isPy27;
src = fetchPypi {
inherit pname version;
hash = "sha256-BtB1CniEsR4OjiDOC8fG1O1fF0PUVmlTQNE/3/lQAaY=";
};
build-system = [
setuptools
setuptools-scm
];
pythonImportsCheck = [ "simpy" ];
nativeCheckInputs = [
py
pytestCheckHook
];
pytestFlags = [
"tests"
];
disabledTests =
lib.optionals (pythonAtLeast "3.13") [
# Failing on python >= 3.13
# FAILED tests/test_exceptions.py::test_exception_chaining - AssertionError: Traceback mismatch
"test_exception_chaining"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"test_rt"
"test_rt_multiple_call"
"test_rt_slow_sim_no_error"
];
meta = {
downloadPage = "https://github.com/simpx/simpy";
homepage = "https://simpy.readthedocs.io/en/${version}/";
description = "Process-based discrete-event simulation framework based on standard Python";
license = [ lib.licenses.mit ];
maintainers = with lib.maintainers; [
dmrauh
shlevy
];
};
}