python3Packages.audioread: 3.0.1 -> 3.1.0

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-01-21 18:31:51 +01:00
parent fba35fccc3
commit fe58db9fbc
@@ -1,28 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
fetchFromGitHub,
poetry-core,
standard-aifc,
standard-sunau,
ffmpeg-headless,
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "audioread";
version = "3.0.1";
version = "3.1.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-rFRgpUmMSL3y6OdnQCWDpNzRP0QU0ob0LOQ3nos1Bm0=";
src = fetchFromGitHub {
owner = "sampsyo";
repo = "audioread";
tag = "v${finalAttrs.version}";
hash = "sha256-QvgwjUGuzeHH69YAdZdImjMT+9t4YxAukbuZKk0lBro=";
};
nativeBuildInputs = [ flit-core ];
build-system = [ poetry-core ];
# No tests, need to disable or py3k breaks
doCheck = false;
dependencies = [
standard-aifc
standard-sunau
];
nativeCheckInputs = [
ffmpeg-headless
pytestCheckHook
];
meta = {
description = "Cross-platform audio decoding";
homepage = "https://github.com/sampsyo/audioread";
license = lib.licenses.mit;
};
}
})