push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
{
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
isPy27,
libopus,
pytestCheckHook,
lib,
stdenv,
replaceVars,
setuptools,
}:
buildPythonPackage {
pname = "opuslib";
version = "3.0.3";
pyproject = true;
disabled = isPy27;
src = fetchFromGitHub {
owner = "orion-labs";
repo = "opuslib";
rev = "92109c528f9f6c550df5e5325ca0fcd4f86b0909";
hash = "sha256-NxmC/4TTIEDVzrfMPN4PcT1JY4QCw8IBMy80XiM/o00=";
};
patches = [
# https://github.com/orion-labs/opuslib/pull/22
(fetchpatch {
name = "fix-variadic-functions-on-aarch64-darwin.patch";
url = "https://github.com/orion-labs/opuslib/commit/8aee916e4da4b3183d49cff5a986dc2408076d8d.patch";
hash = "sha256-oa1HCFHNS3ejzSf0jxv9NueUKOZgdCtpv+xTrjYW5os=";
})
# https://github.com/orion-labs/opuslib/pull/25
(fetchpatch {
name = "fix-tests-when-using-libopus-1.4.patch";
url = "https://github.com/orion-labs/opuslib/commit/87a214fc98c1dcae38035e99fe8e279a160c4a52.patch";
hash = "sha256-UoOafyTFvWLY7ErtBhkXTZSgbMZFrg5DGxjbhqEI7wo=";
})
(replaceVars ./opuslib-paths.patch {
opusLibPath = "${libopus}/lib/libopus${stdenv.hostPlatform.extensions.sharedLibrary}";
})
];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [
"tests/decoder.py"
"tests/encoder.py"
"tests/hl_decoder.py"
"tests/hl_encoder.py"
];
meta = with lib; {
description = "Python bindings to the libopus, IETF low-delay audio codec";
homepage = "https://github.com/orion-labs/opuslib";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ thelegy ];
};
}

View File

@@ -0,0 +1,26 @@
diff --git a/opuslib/api/__init__.py b/opuslib/api/__init__.py
index 323a2a4..4c8a8fe 100644
--- a/opuslib/api/__init__.py
+++ b/opuslib/api/__init__.py
@@ -7,20 +7,12 @@
import ctypes # type: ignore
-from ctypes.util import find_library # type: ignore
-
__author__ = 'Никита Кузнецов <self@svartalf.info>'
__copyright__ = 'Copyright (c) 2012, SvartalF'
__license__ = 'BSD 3-Clause License'
-lib_location = find_library('opus')
-
-if lib_location is None:
- raise Exception(
- 'Could not find Opus library. Make sure it is installed.')
-
-libopus = ctypes.CDLL(lib_location)
+libopus = ctypes.CDLL('@opusLibPath@')
c_int_pointer = ctypes.POINTER(ctypes.c_int)
c_int16_pointer = ctypes.POINTER(ctypes.c_int16)