Use `(enabled|disabled)(TestPaths|TestMarks|Tests)` and `pytestFlags` instead of the `__structuredAttrs`-incompatible `pytestFlagsArray`.
64 lines
1.2 KiB
Nix
64 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
|
|
];
|
|
|
|
enabledTestPaths = [
|
|
"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; [
|
|
shlevy
|
|
];
|
|
};
|
|
}
|