1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 numpy,
6 scipy,
7}:
8
9buildPythonPackage {
10 pname = "apkit";
11 version = "unstable-2022-08-23";
12 format = "setuptools";
13
14 src = fetchFromGitHub {
15 owner = "hwp";
16 repo = "apkit";
17 rev = "40561738c3f585c590c3f0584bf2e3354eefbd48";
18 hash = "sha256-/pwoEKB6BD+wWy7QwPwwzSxGn+TAOaMzduOXyuoXC8g=";
19 };
20
21 propagatedBuildInputs = [
22 numpy
23 scipy
24 ];
25
26 pythonImportsCheck = [ "apkit" ];
27
28 # This package has no tests
29 doCheck = false;
30
31 meta = with lib; {
32 description = "Audio processing toolkit";
33 homepage = "https://github.com/hwp/apkit";
34 license = licenses.mit;
35 maintainers = with maintainers; [ GaetanLepage ];
36 };
37}