diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-09 11:09:13 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:39 +0100 |
commit | a947c4ea60a256c5d07f46482ff5f58f939d94b1 (patch) | |
tree | e572f96d6f81036e7d6671b7a5318fcc5dd18dc6 | |
parent | 247ab0a786d9e062fbce56ef7956c198a8cd54bb (diff) |
gnu: python-resampy: Update to 0.4.3.
* gnu/packages/audio.scm (python-resampy): Update to 0.4.3.
[arguments]: Remove.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I79d0a460d4646c5fde3aec9314d9ccc6380002de
-rw-r--r-- | gnu/packages/audio.scm | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 712337dda87..9f5bca21797 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015-2024 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015-2025 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Alex Kost <alezost@gmail.com> @@ -163,6 +163,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system meson) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix build-system trivial) #:use-module (guix build-system waf) #:use-module (guix download) @@ -6404,7 +6405,7 @@ and much more.") (define-public python-resampy (package (name "python-resampy") - (version "0.2.2") + (version "0.4.3") (source (origin (method git-fetch) @@ -6415,20 +6416,12 @@ and much more.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0qmkxl5sbgh0j73n667vyi7ywzh09iaync91yp1j5rrcmwsn0qfs")))) - (build-system python-build-system) - (arguments - '(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key inputs outputs tests? #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "tests"))))))) + (base32 "0dlm9ksm7yzgg582sic0vqwfcwdya1g4gnydxldfhaq4y0wakr9c")))) + (build-system pyproject-build-system) (propagated-inputs (list python-numba python-numpy python-scipy python-six)) (native-inputs - (list python-pytest python-pytest-cov)) + (list python-pytest python-pytest-cov python-setuptools python-wheel)) (home-page "https://github.com/bmcfee/resampy") (synopsis "Efficient signal resampling") (description |