56 lines
959 B
Nix
56 lines
959 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
# build-sytem
|
|
, cython_3
|
|
, numpy
|
|
, setuptools
|
|
, setuptools-scm
|
|
, gnutar
|
|
|
|
# native
|
|
, libsoxr
|
|
|
|
# tests
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "soxr";
|
|
version = "0.3.5";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dofuuz";
|
|
repo = "python-soxr";
|
|
rev = "refs/tags/v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-q/K7XlqvDHAna+fqN6iiJ9wD8efsuwHiEfKjXS46jz8=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
cython_3
|
|
gnutar
|
|
numpy
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|