python3Packages.samplerate: 0.2.1 -> 0.2.2

https://github.com/tuxu/python-samplerate/releases/tag/v0.2.2
This commit is contained in:
Martin Weinelt
2025-10-11 16:54:38 +02:00
parent 4cf5efb6bb
commit 83e4941069

View File

@@ -22,14 +22,14 @@
buildPythonPackage rec {
pname = "samplerate";
version = "0.2.1";
version = "0.2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "tuxu";
repo = "python-samplerate";
tag = "v${version}";
hash = "sha256-/9NFJcn8R0DFjVhFAIYOtzZM90hjVIfsVXFlS0nHNhA=";
hash = "sha256-aSlnPwFNZRffDsLqhYD1Pd5JOwvv9GcWyseZmeyrvt0=";
};
postPatch = ''
@@ -66,7 +66,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python bindings for libsamplerate based on CFFI and NumPy";
homepage = "https://github.com/tuxu/python-samplerate";
changelog = "https://github.com/tuxu/python-samplerate/releases/tag/${version}";
changelog = "https://github.com/tuxu/python-samplerate/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};