[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
255/397: gnu: python-librosa: Update to 0.10.2.post1.
From: |
guix-commits |
Subject: |
255/397: gnu: python-librosa: Update to 0.10.2.post1. |
Date: |
Thu, 16 Jan 2025 04:30:45 -0500 (EST) |
rekado pushed a commit to branch python-team
in repository guix.
commit 7e22b0203c1888f6356031b8cf24da9d80cd0a7a
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 a736946fe7..76b16bc0fd 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
- 235/397: gnu: python-xdoctest: Update to 1.2.0., (continued)
- 235/397: gnu: python-xdoctest: Update to 1.2.0., guix-commits, 2025/01/16
- 257/397: gnu: python-easy-thumbnails: Update to 2.10., guix-commits, 2025/01/16
- 268/397: gnu: python-django-sortedm2m: Update to 4.0.0., guix-commits, 2025/01/16
- 261/397: gnu: python-django-debug-toolbar: Disable broken test., guix-commits, 2025/01/16
- 245/397: gnu: python-agate-sql: Drop input labels., guix-commits, 2025/01/16
- 264/397: gnu: python-django-pipeline: Update to 4.0.0., guix-commits, 2025/01/16
- 251/397: gnu: Add python-soxr., guix-commits, 2025/01/16
- 239/397: gnu: python-ailment: Add missing inputs., guix-commits, 2025/01/16
- 237/397: gnu: python-matplotx: Add missing inputs., guix-commits, 2025/01/16
- 277/397: gnu: python-cart: Add missing inputs., guix-commits, 2025/01/16
- 255/397: gnu: python-librosa: Update to 0.10.2.post1.,
guix-commits <=
- 226/397: gnu: python-reproject: Add missing input., guix-commits, 2025/01/16
- 313/397: gnu: Remove python-twodict., guix-commits, 2025/01/16
- 288/397: gnu: python-claripy: Add missing inputs., guix-commits, 2025/01/16
- 324/397: gnu: python-celery: Fix build., guix-commits, 2025/01/16
- 315/397: gnu: Remove python-tinycss., guix-commits, 2025/01/16
- 316/397: gnu: python-spin: Fix build., guix-commits, 2025/01/16
- 287/397: gnu: python-whatshap: Add missing input., guix-commits, 2025/01/16
- 282/397: gnu: python-xarray-datatree: Add missing inputs., guix-commits, 2025/01/16
- 284/397: gnu: python-pynetbox: Update to 7.4.1., guix-commits, 2025/01/16
- 307/397: gnu: python-wsgi-intercept: Update to 1.13.1., guix-commits, 2025/01/16