[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/13: gnu: python-librosa: Update to 0.10.2.post1.
From: |
guix-commits |
Subject: |
13/13: gnu: python-librosa: Update to 0.10.2.post1. |
Date: |
Sat, 11 Jan 2025 16:59:43 -0500 (EST) |
rekado pushed a commit to branch python-team
in repository guix.
commit d4cc1259201f4b5a3097318b43501b6c6f7494dd
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Jan 11 22:56:06 2025 +0100
gnu: python-librosa: Update to 0.10.2.post1.
* gnu/packages/audio.scm (python-librosa): Update to 0.10.2.post1.
[source]: Fetch git repository.
[build-system]: Use pyproject-build-system.
[arguments]: Enable most tests.
[propagated-inputs]: Add python-lazy-loader, python-msgpack, python-soxr,
and
python-typing-extensions; remove python-packaging and python-resampy.
[native-inputs]: Add python-matplotlib, python-packaging, python-pytest,
python-pytest-cov, python-resampy, python-setuptools, and python-wheel.
Change-Id: If05901c939a0be4be891be94ce89faa72e9db9c0
---
gnu/packages/audio.scm | 44 +++++++++++++++++++++++++++++++++-----------
1 file changed, 33 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 3c4d7fc895..76b9f14e06 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -6487,30 +6487,52 @@ Home Page}.")
(define-public python-librosa
(package
(name "python-librosa")
- (version "0.8.1")
+ (version "0.10.2.post1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "librosa" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/librosa/librosa/")
+ (commit version)
+ ;; For test files.
+ (recursive? #true)))
(sha256
- (base32 "1cx6rhcvak0hy6bx84jwzpxmwgi92m82w77279akwjmfd3khagf5"))))
- (build-system python-build-system)
+ (base32 "1x37148y1rh4sq2nc59iw9jlza3zwawxnlb7bd9w36an05aclmnh"))))
+ (build-system pyproject-build-system)
(arguments
- ;; Tests require internet connection to download MATLAB scripts for
- ;; generating the testing data.
- `(#:tests? #f))
+ (list
+ #:test-flags
+ ;; Ignore --mpl flag.
+ '(list "-c" "/dev/null"
+ "-k" (string-append
+ ;; Resampling tests require python-samplerate.
+ "not resample"
+ ;; These tests use Pooch and download data files.
+ " and not example and not test_cite"
+ ;; XXX assert 22050 == 31744
+ " and not test_stream"))))
(propagated-inputs
(list python-audioread
python-decorator
python-joblib
+ python-lazy-loader
+ python-msgpack
python-numba
python-numpy
- python-packaging
python-pooch
- python-resampy
python-scikit-learn
python-scipy
- python-soundfile))
+ python-soundfile
+ python-soxr
+ python-typing-extensions))
+ (native-inputs
+ (list python-matplotlib
+ python-packaging
+ python-pytest
+ python-pytest-cov
+ python-resampy
+ python-setuptools
+ python-wheel))
(home-page "https://librosa.org")
(synopsis "Python module for audio and music processing")
(description
- branch python-team updated (728148a0b0 -> d4cc125920), guix-commits, 2025/01/11
- 03/13: gnu: python-agate-sql: Drop input labels., guix-commits, 2025/01/11
- 07/13: gnu: python-django-rest-framework: Update to 3.15.2., guix-commits, 2025/01/11
- 06/13: gnu: python-django-taggit: Update to 6.1.0., guix-commits, 2025/01/11
- 13/13: gnu: python-librosa: Update to 0.10.2.post1.,
guix-commits <=
- 05/13: gnu: python-django: Set default to 4.2., guix-commits, 2025/01/11
- 12/13: gnu: watson: Add missing inputs., guix-commits, 2025/01/11
- 02/13: gnu: python-sybil: Update to 9.0.0., guix-commits, 2025/01/11
- 04/13: gnu: python-agate-dbf: Drop input labels., guix-commits, 2025/01/11
- 01/13: gnu: Add python-seedir., guix-commits, 2025/01/11
- 09/13: gnu: Add python-soxr., guix-commits, 2025/01/11
- 11/13: gnu: python-audioread: Update to 3.0.1., guix-commits, 2025/01/11
- 10/13: gnu: python-soundfile: Update to 0.13.0., guix-commits, 2025/01/11
- 08/13: gnu: Add python-nanobind., guix-commits, 2025/01/11