1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
cmake,
nanobind,
ninja,
scikit-build-core,
setuptools,
setuptools-scm,
typing-extensions,
# native dependencies
libsoxr,
# dependencies
numpy,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "soxr";
version = "1.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dofuuz";
repo = "python-soxr";
tag = "v${version}";
hash = "sha256-8NVQD1LamIRe77bKEs8YqHXeXifdMJpQUedmeiBRHSI=";
};
patches = [ ./cmake-nanobind.patch ];
nativeBuildInputs = [
cmake
ninja
];
dontUseCmakeConfigure = true;
cmakeFlags = [
(lib.cmakeBool "USE_SYSTEM_LIBSOXR" true)
];
build-system = [
scikit-build-core
nanobind
setuptools
setuptools-scm
]
++ lib.optionals (pythonOlder "3.11") [
typing-extensions
];
buildInputs = [ libsoxr ];
dependencies = [ numpy ];
pythonImportsCheck = [ "soxr" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
changelog = "https://github.com/dofuuz/python-soxr/releases/tag/${src.tag}";
description = "High quality, one-dimensional sample-rate conversion library";
homepage = "https://github.com/dofuuz/python-soxr/tree/main";
license = lib.licenses.lgpl21Plus;
maintainers = with lib.maintainers; [ hexa ];
};
}
|