Files
nixpkgs/pkgs/development/python-modules/mediafile/default.nix
T
Martin Weinelt e3925dc622 python3Packages.mediafile: 0.13.0 -> 0.14.0
https://github.com/beetbox/mediafile/releases/tag/v0.14.0

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:31 +01:00

42 lines
872 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
filetype,
mutagen,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mediafile";
version = "0.14.0";
pyproject = true;
src = fetchFromGitHub {
owner = "beetbox";
repo = "mediafile";
tag = "v${version}";
hash = "sha256-D5LRGncdeGcmJkrHVvI2cevov4SFO0wuhLxMqP+Ryb8=";
};
build-system = [ poetry-core ];
dependencies = [
filetype
mutagen
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "mediafile" ];
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}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lovesegfault ];
};
}