diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-07 01:19:54 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-11 16:02:04 +0000 |
| commit | a5c32a958bee257dfb64cf80ca08d134b64c0eff (patch) | |
| tree | b11c375cefd35a485832cc8a8c4ae7e7858e1217 | |
| parent | 62c176973819e350f6b6985c7069af81ee90880d (diff) | |
gnu: python-pyroutelib3: Update to 2.0.0.
* gnu/packages/python-xyz.scm (python-pyroutelib3): Update to 2.0.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Add python-protobuf-5.
[native-inputs]: Add python-filelock, python-flit-core, python-pytest.
Change-Id: I15f41b76ec18b22fc239a05559d35ff9f67a8e99
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 51b120e5b42..0d55ed3e35b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -28816,17 +28816,19 @@ for manual interpretation.") (define-public python-pyroutelib3 (package (name "python-pyroutelib3") - (version "1.3.post1") + (version "2.0.0") (source (origin - (method url-fetch) - (uri (pypi-uri "pyroutelib3" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/MKuranowski/pyroutelib3") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1hpbydpn2alyswiajfbvhzq4c7f36vdmvxy91hgv8l1lb2g2vfrj")))) - (build-system python-build-system) - (propagated-inputs - (list python-dateutil)) + (base32 "18a86fggs9pjib97x47acqgccrsra1h7dkz21r94vsyrdindchns")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-dateutil python-protobuf-5)) + (native-inputs (list python-filelock python-flit-core python-pytest)) (home-page "https://github.com/MKuranowski/pyroutelib3") (synopsis "Library for simple routing on OSM data") (description "Library for simple routing on OSM data") |
