diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 18:55:22 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-19 19:00:08 +0100 |
| commit | d61d8e4c7cdbf3c5087fd4b9f091f0eab2915074 (patch) | |
| tree | 61321dd7a7015ab9502c3a42162faf25a69e6ae3 | |
| parent | 672d17f184805eedc9cf7dc086146426a1f6f251 (diff) | |
gnu: python-pydub: Fix tests.
* gnu/packages/python-xyz.scm (python-pydub):
[source] <patches>: Apply upstream patch to fix tests.
Change-Id: I771d0b59a61304bf35e54ce64dbd54ee76861b33
| -rw-r--r-- | gnu/packages/python-xyz.scm | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cb7fa76cec..ac53ec844c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25912,6 +25912,7 @@ version of @code{SocksiPy} with bug fixes and extra features.") (license license:bsd-3))) (define-public python-pydub + ;; TODO: Move to (gnu packages audio) (package (name "python-pydub") (version "0.25.1") @@ -25923,7 +25924,17 @@ version of @code{SocksiPy} with bug fixes and extra features.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0xskllq66wqndjfmvp58k26cv3w480sqsil6ifwp4gghir7hqc8m")))) + (base32 "0xskllq66wqndjfmvp58k26cv3w480sqsil6ifwp4gghir7hqc8m")) + (patches + (list + ;; See: <https://github.com/jiaaro/pydub/pull/769>. + (origin + (method url-fetch) + (uri + (string-append "https://github.com/jiaaro/pydub/commit/" + "66c1bf7813ae8621a71484fdcdf609734c0d8efd.patch")) + (sha256 + (base32 "17nlbw79gv9mag6xpd46al5f1bgqcncffh151znn0fmhj8i9rgz3"))))))) (build-system pyproject-build-system) (arguments (list |
