Merge pull request #252715 from Benjamin-L/add-auditok

python3Packages.auditok: init at 0.1.5
This commit is contained in:
Fabian Affolter 2023-10-01 11:24:36 +02:00 committed by GitHub
commit 99621efaeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ buildPythonPackage
, fetchPypi
, lib
, matplotlib
, numpy
, pyaudio
, pydub
, pythonOlder
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "auditok";
version = "0.1.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version;
pname = "auditok";
hash = "sha256-HNsw9VLP7XEgs8E2X6p7ygDM47AwWxMYjptipknFig4=";
};
propagatedBuildInputs = [ matplotlib numpy pyaudio pydub ];
nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [ "-s" "tests" ];
pythonImportsCheck = [ "auditok" ];
# The most recent version is 0.2.0, but the only dependent package is
# ffsubsync, which is pinned at 0.1.5.
passthru.skipBulkUpdate = true;
meta = with lib; {
description = "Audio Activity Detection tool that can process online data as well as audio files";
homepage = "https://github.com/amsehili/auditok/";
changelog = "https://github.com/amsehili/auditok/blob/v${version}/CHANGELOG";
license = licenses.mit;
maintainers = with maintainers; [ Benjamin-L ];
};
}

View File

@ -872,6 +872,8 @@ self: super: with self; {
inherit (pkgs.darwin.apple_sdk.frameworks) AudioToolbox AudioUnit CoreServices;
};
auditok = callPackage ../development/python-modules/auditok { };
augeas = callPackage ../development/python-modules/augeas {
inherit (pkgs) augeas;
};