summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-06 09:12:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-06 20:04:55 +0100
commite9e15e60e858cb5dc8b94ca2f0aaa5475ad3ba42 (patch)
tree7c7c2f8e33dcd35db05a4c458e5a34f3ee6c96ab
parentec95c71c01144fcae1a3d079e0d0aec6087b9d2a (diff)
gnu: python-kivy-garden: Update to 0.1.5.
* gnu/packages/python-xyz.scm (python-kivy-garden): Update to 0.1.5. [source]: Switch to git-fetch. [build-system]: Switch to pyproject. [arguments] <phases>: Remove 'remove-bat-file, as it's part of installation even if it's related to Windows, it's just set-up script no a binary blob. <tests?>: Deliberately switch them off as no provided. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I1eab910405f0a55bad241b2dd2d8cb4b80261a5b
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 32a01d70a2..9692bee40b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -24592,21 +24592,23 @@ UE9 and U12 LabJack data acquisition (DAQ) modules.")
(define-public python-kivy-garden
(package
(name "python-kivy-garden")
- (version "0.1.4")
+ (version "0.1.5")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "kivy-garden" version))
+ (method git-fetch) ; source was removed from PyPI
+ (uri (git-reference
+ (url "https://github.com/kivy-garden/garden")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0wkcpr2zc1q5jb0bi7v2dgc0vs5h1y7j42mviyh764j2i0kz8mn2"))))
- (build-system python-build-system)
+ (base32 "1pvjblaljrcmjkq6hsa89zkh9ggdval58d2lwzd69vlma8y03qy4"))))
+ (build-system pyproject-build-system)
(arguments
- '(#:phases (modify-phases %standard-phases
- (add-after 'install 'remove-bat-file
- (lambda* (#:key outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out")))
- (delete-file
- (string-append out "/bin/garden.bat"))))))))
+ (list
+ #:tests? #f)) ; no tests in PyPI or Git distributions
+ (native-inputs
+ (list python-setuptools
+ python-wheel))
(propagated-inputs
(list python-requests))
(home-page "https://github.com/kivy-garden/garden")