mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add python-commonroad-vehicle-models.
* gnu/packages/simulation.scm (%commonroad-dont-install-license-at-root) (python-commonroad-vehicle-models): New variables.
This commit is contained in:
parent
583a197b00
commit
59a8de6bad
1 changed files with 30 additions and 0 deletions
|
@ -936,6 +936,36 @@ (define-public python-dolfin-adjoint
|
|||
@url{https://firedrakeproject.org,firedrake}.")
|
||||
(license license:lgpl3)))
|
||||
|
||||
(define %commonroad-dont-install-license-at-root
|
||||
#~(substitute* "setup.py"
|
||||
(("data_files=\\[\\('.', \\['LICENSE.txt'\\]\\)\\],")
|
||||
"")))
|
||||
|
||||
(define-public python-commonroad-vehicle-models
|
||||
(package
|
||||
(name "python-commonroad-vehicle-models")
|
||||
(version "3.0.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "commonroad-vehicle-models" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13jg0cys7y4n7rg548w6mxk9g10gd5qxmj4ynrlriczpffqy6kc7"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-setup.py
|
||||
(lambda _
|
||||
#$%commonroad-dont-install-license-at-root)))))
|
||||
(propagated-inputs (list python-numpy python-omegaconf))
|
||||
(home-page "https://commonroad.in.tum.de/")
|
||||
(synopsis "CommonRoad vehicle models")
|
||||
(description "This package provides vehicle models used in CommonRoad
|
||||
benchmarks. Varying abstraction levels are used ranging from kinematic single
|
||||
track models to multi-body models.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public sumo
|
||||
(package
|
||||
(name "sumo")
|
||||
|
|
Loading…
Reference in a new issue