12 buildPythonPackage rec {
15 format = "setuptools";
17 disabled = pythonOlder "3.7";
22 hash = "sha256-HNsw9VLP7XEgs8E2X6p7ygDM47AwWxMYjptipknFig4=";
25 propagatedBuildInputs = [ matplotlib numpy pyaudio pydub ];
27 nativeCheckInputs = [ unittestCheckHook ];
29 unittestFlagsArray = [ "-s" "tests" ];
31 pythonImportsCheck = [ "auditok" ];
33 # The most recent version is 0.2.0, but the only dependent package is
34 # ffsubsync, which is pinned at 0.1.5.
35 passthru.skipBulkUpdate = true;
38 description = "Audio Activity Detection tool that can process online data as well as audio files";
39 mainProgram = "auditok";
40 homepage = "https://github.com/amsehili/auditok/";
41 changelog = "https://github.com/amsehili/auditok/blob/v${version}/CHANGELOG";
42 license = licenses.mit;
43 maintainers = with maintainers; [ Benjamin-L ];