python314Packages.samplerate-ledfx: init at 0.2.6

This commit is contained in:
Sandro Jäckel
2026-05-09 04:07:16 +02:00
parent 4a792e7f4e
commit 1d08d405a0
2 changed files with 67 additions and 0 deletions
@@ -0,0 +1,63 @@
{
lib,
buildPythonPackage,
cmake,
fetchFromGitHub,
libsamplerate,
numpy,
pybind11,
pytest-asyncio,
pytestCheckHook,
pythonAtLeast,
setuptools,
setuptools-scm,
}:
buildPythonPackage (finalAttrs: {
pname = "samplerate-ledfx";
version = "0.2.6";
pyproject = true;
disabled = pythonAtLeast "3.14";
src = fetchFromGitHub {
owner = "LedFx";
repo = "python-samplerate-ledfx";
tag = "v${finalAttrs.version}";
hash = "sha256-SLmaWSq/Ou23BfdWKlzE9gIfORgF9skUVEw1Tzpd5b4=";
};
# unvendor pybind11, libsamplerate
postPatch = ''
rm -r external
substituteInPlace CMakeLists.txt \
--replace-fail "add_subdirectory(external)" "find_package(pybind11 REQUIRED)"
'';
build-system = [
cmake
pybind11
setuptools
setuptools-scm
];
dontUseCmakeConfigure = true;
buildInputs = [ libsamplerate ];
dependencies = [ numpy ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "samplerate" ];
meta = {
description = "Bindings for libsamplerate based on CFFI and NumPy";
homepage = "https://github.com/LedFx/python-samplerate-ledfx";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
};
})
+4
View File
@@ -17316,6 +17316,10 @@ self: super: with self; {
samplerate = callPackage ../development/python-modules/samplerate { inherit (pkgs) libsamplerate; };
samplerate-ledfx = callPackage ../development/python-modules/samplerate-ledfx {
inherit (pkgs) libsamplerate;
};
samsungctl = callPackage ../development/python-modules/samsungctl { };
samsungtvws = callPackage ../development/python-modules/samsungtvws { };