[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#59798] [PATCH 6/6] gnu: Add python-commonroad-route-planner.
From: |
Liliana Marie Prikler |
Subject: |
[bug#59798] [PATCH 6/6] gnu: Add python-commonroad-route-planner. |
Date: |
Sat, 3 Dec 2022 10:43:08 +0100 |
* gnu/packages/simulation.scm (python-commonroad-route-planner): New variable.
---
gnu/packages/simulation.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm
index 7659cf224a..762cfc2b84 100644
--- a/gnu/packages/simulation.scm
+++ b/gnu/packages/simulation.scm
@@ -1007,6 +1007,39 @@ (define-public python-commonroad-io
and is the basis for other tools of the CommonRoad Framework")
(license license:bsd-3)))
+(define-public python-commonroad-route-planner
+ (package
+ (name "python-commonroad-route-planner")
+ (version "2022.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://gitlab.lrz.de/tum-cps/commonroad-route-planner")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (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)
+ (propagated-inputs (list python-commonroad-io
+ python-matplotlib
+ python-networkx
+ python-numpy
+ python-setuptools
+ 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).")
+ (license license:bsd-3)))
+
(define-public sumo
(package
(name "sumo")
--
2.38.1
- [bug#59798] [PATCH 0/6] Add CommonRoad, Liliana Marie Prikler, 2022/12/03
- [bug#59798] [PATCH 1/6] gnu: Add java-antlr4-runtime-python., Liliana Marie Prikler, 2022/12/03
- [bug#59798] [PATCH 5/6] gnu: Add python-commonroad-io., Liliana Marie Prikler, 2022/12/03
- [bug#59798] [PATCH 4/6] gnu: Add python-commonroad-vehicle-models., Liliana Marie Prikler, 2022/12/03
- [bug#59798] [PATCH 2/6] gnu: Add python-omegaconf., Liliana Marie Prikler, 2022/12/03
- [bug#59798] [PATCH 6/6] gnu: Add python-commonroad-route-planner.,
Liliana Marie Prikler <=
- [bug#59798] [PATCH 3/6] gnu: python-iso3166: Update to 2.1.1., Liliana Marie Prikler, 2022/12/03