guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 3038754228d74dad9a134f32112094e462689b38
Author: Vinicius Monego <[email protected]>
AuthorDate: Wed Dec 24 13:07:42 2025 -0300
gnu: python-ta-lib: Update to 0.6.8.
* gnu/packages/finance.scm (python-ta-lib): Update to 0.6.8.
[source]: Update commit string.
[native-inputs]: Add python-pypa-build.
Change-Id: I89500f1c946d2746944f15dbdb92a730c9c70c46
---
gnu/packages/finance.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index 1d793917b7..eadc695209 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -2469,17 +2469,17 @@ interactive controls. This package provides a GTK+
graphical user interface
(define-public python-ta-lib
(package
(name "python-ta-lib")
- (version "0.6.4")
+ (version "0.6.8")
(source
(origin
;; Git repo contains Make rules to regenerate precompiled files
(method git-fetch)
(uri (git-reference
(url "https://github.com/TA-Lib/ta-lib-python")
- (commit (string-append "TA_Lib-" version))))
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "12qzk7naflcmlm7shsnxl4hg6cc0xh4937p0jv8y89c3fgx71cv8"))))
+ (base32 "0rkb6hjwzhi7smsdndfvw9lgnyfmjsv8ca660dilgsfv8m7by23y"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2496,6 +2496,7 @@ interactive controls. This package provides a GTK+
graphical user interface
(propagated-inputs (list python-numpy))
(native-inputs (list python-cython
python-pandas
+ python-pypa-build ; to satisfy requirements_dev.txt
python-pytest
python-setuptools
python-wheel))