sharlatan pushed a commit to branch python-team
in repository guix.
commit 51f1dd2c2c82a35fe6d5e0905fdad093a7da053e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Nov 9 08:57:57 2024 +0000
gnu: python-mediafile: Update to 0.13.0.
* gnu/packages/music.scm (python-mediafile): Update to 0.13.0.
[build-system]: Swap to pyproject-build-system.
[propagated-inputs]: Remove python-six; add python-filetype.
[native-inputs]: Add python-flit-core and python-pytest.
Change-Id: Ie579f8481686b121f825a90c6fc1d14a119f0a01
---
gnu/packages/music.scm | 17 +++++++++++++----
1 file changed, 13 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 6391077196..628448e4b6 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -4058,17 +4058,26 @@ streams on an individual packet/page level.")
(define-public python-mediafile
(package
(name "python-mediafile")
- (version "0.8.0")
+ (version "0.13.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "mediafile" version))
(sha256
(base32
- "0ipb001j19s9wvssmrj8wz0nrkbl0k3zr3dgzyp1bd9cjc6vklnp"))))
- (build-system python-build-system)
+ "0vcsf9607jxh3bw2fn0hc3krr2mcgpm2dmfadhyp7sgz3cz0cwfy"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; One test fails with: AssertionError: 88200 != 705600.
+ #:test-flags
+ #~(list
"--deselect=test/test_mediafile.py::WAVETest::test_read_audio_properties")))
+ (native-inputs
+ (list python-flit-core
+ python-pytest))
(propagated-inputs
- (list python-mutagen python-six))
+ (list python-mutagen
+ python-filetype))
(home-page "https://github.com/beetbox/mediafile")
(synopsis "Read and write audio file tags")
(description