python3Packages.mediafile: 0.14.0 -> 0.16.0 (#507049)

This commit is contained in:
Fabian Affolter
2026-04-06 19:15:46 +00:00
committed by GitHub
@@ -8,16 +8,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "mediafile";
version = "0.14.0";
version = "0.16.0";
pyproject = true;
src = fetchFromGitHub {
owner = "beetbox";
repo = "mediafile";
tag = "v${version}";
hash = "sha256-D5LRGncdeGcmJkrHVvI2cevov4SFO0wuhLxMqP+Ryb8=";
tag = "v${finalAttrs.version}";
hash = "sha256-GKEm2LKR3F9uy3FdhvpLPE9Auca8+40Zp53yaLk45XE=";
};
build-system = [ poetry-core ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
meta = {
description = "Python interface to the metadata tags for many audio file formats";
homepage = "https://github.com/beetbox/mediafile";
changelog = "https://github.com/beetbox/mediafile/releases/tag/${src.tag}";
changelog = "https://github.com/beetbox/mediafile/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lovesegfault ];
};
}
})