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