diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-22 23:29:19 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-26 21:22:06 +0000 |
| commit | 5cbbbc609f1cc0fccd01efbaeeeb7063a9e416c9 (patch) | |
| tree | c6ec3925f0542ba98164aa8b590881b49dceeb71 /gnu/packages | |
| parent | 98d4c1daebba7abc46a931d570c0bf8501a1ae3a (diff) | |
gnu: python-commonroad-vehicle-models: Switch to pyproject.
* gnu/packages/simulation.scm (python-commonroad-vehicle-models):
[build-system]: Switch to pyproject-build-system.
[arguments]: Improve style.
<#:test-flags>: Ignore failing tests.
[native-inputs]: Add python-matplotlib, python-pytest, python-scipy,
python-setuptools.
Change-Id: If774ec9d9c8185367b2e2360e60e05038b11eca6
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/simulation.scm | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index f667c4d1d7f..5ee0b1d8fbf 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm @@ -1281,13 +1281,22 @@ implemented in @code{fenics} or (sha256 (base32 "13jg0cys7y4n7rg548w6mxk9g10gd5qxmj4ynrlriczpffqy6kc7")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments - (list #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'fix-setup.py - (lambda _ - #$%commonroad-dont-install-license-at-root))))) + (list + #:test-flags + #~(list "--ignore=scripts/test_vehicle.py" ; import error + "-k" "not test_std") ; flaky + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-setup.py + (lambda _ + #$%commonroad-dont-install-license-at-root))))) + (native-inputs + (list python-matplotlib + python-pytest + python-scipy + python-setuptools)) (propagated-inputs (list python-numpy python-omegaconf)) (home-page "https://commonroad.in.tum.de/") (synopsis "CommonRoad vehicle models") |
