diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-22 23:32:17 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-26 21:22:06 +0000 |
| commit | 99e0ae24312c4e5905715132e3860db2a61ee6aa (patch) | |
| tree | 296d577c457b011a9d5ca468c5b9bfab78c8931e /gnu/packages/simulation.scm | |
| parent | ebf4dccceda093966fa0e0a702be2a521c9124fb (diff) | |
gnu: python-commonroad-route-planner: Switch to pyproject.
* gnu/packages/simulation.scm (python-commonroad-route-planner):
[build-system]: Switch to pyproject-build-system.
[arguments]: Improve style.
<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
[description]: Improve style.
Change-Id: I4df18bbc6bafa2d156e8569646e6b5b1af464714
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/simulation.scm')
| -rw-r--r-- | gnu/packages/simulation.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index c2445c40743..00bf74d0f0a 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm @@ -1362,12 +1362,15 @@ and is the basis for other tools of the CommonRoad Framework.") (base32 "0xn0l7bzmj56d4mlqacvbl8mdvsffkg2fn2lzfmis5jl4vp99ipf")))) (arguments - (list #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'fix-setup.py - (lambda _ - #$%commonroad-dont-install-license-at-root))))) - (build-system python-build-system) + (list + #:tests? #f ; No tests. + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-setup.py + (lambda _ + #$%commonroad-dont-install-license-at-root))))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools)) (propagated-inputs (list python-commonroad-io python-matplotlib python-networkx @@ -1376,9 +1379,9 @@ and is the basis for other tools of the CommonRoad Framework.") python-shapely)) (home-page "https://gitlab.lrz.de/tum-cps/commonroad-route-planner") (synopsis "Route planner for CommonRoad scenarios") - (description "This package provides functions for route planning, that is -finding sequences that lead from a given start lanelet to some goal -lanelet(s).") + (description + "This package provides functions for route planning, that is finding +sequences that lead from a given start lanelet to some goal lanelet(s).") (license license:bsd-3))) (define-public sumo |
