summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-31 07:39:04 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:23:29 +0100
commite42ad05e323f1d5cda2be6a5cd2b046f59d779a3 (patch)
treea1943cdae183ee4475eb81d4de17cd656968218f /gnu/packages/python-science.scm
parentf1d764a80116c01db92787bc835d0caadb992a3a (diff)
gnu: python-geosketch: Update to 1.3.
* gnu/packages/python-science.scm (python-geosketch): Update to 1.3. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]<#:tests>: Ignore them. [native-inputs]: Add python-setuptools. Change-Id: Ib86bb1a690585d925f3cd7ba801e89e04273d8e1 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm23
1 files changed, 14 insertions, 9 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index bd3ac52cca7..c80696d79c7 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1261,15 +1261,20 @@ formulas for Python.")
(define-public python-geosketch
(package
(name "python-geosketch")
- (version "1.2")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "geosketch" version))
- (sha256
- (base32
- "0knch5h0p8xpm8bi3b5mxyaf1ywwimrsdmbnc1xr5icidcv9gzmv"))))
- (build-system python-build-system)
- (arguments '(#:tests? #false)) ;there are none
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/brianhie/geosketch")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0lnynk4r87zqck5mmj33axmly34hh7lrlmfy1qidrw7xihy28g5a"))))
+ (build-system pyproject-build-system)
+ ;; XXX: Avoid circular dependency on python-scanorama.
+ (arguments (list #:tests? #f))
+ (native-inputs (list python-setuptools))
(propagated-inputs (list python-fbpca python-numpy python-scikit-learn))
(home-page "https://github.com/brianhie/geosketch")
(synopsis "Geometry-preserving random sampling")