mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
78 lines
1.3 KiB
Nix
78 lines
1.3 KiB
Nix
{
|
|
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 = "0.5.0.post1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dofuuz";
|
|
repo = "python-soxr";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-Fpayc+MOpDUCdpoyJaIqSbMzuO0jYb6UN5ARFaxxOHk=";
|
|
};
|
|
|
|
patches = [ ./cmake-nanobind.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
pypaBuildFlags = [
|
|
"--config=cmake.define.USE_SYSTEM_LIBSOXR=ON"
|
|
];
|
|
|
|
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 = with lib; {
|
|
description = "High quality, one-dimensional sample-rate conversion library";
|
|
homepage = "https://github.com/dofuuz/python-soxr/tree/main";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|