mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
Merge pull request #65984 from prusnak/webrtcvad
pythonPackages.webrtcvad: init at 2.0.10
This commit is contained in:
commit
9c6fbbd9aa
24
pkgs/development/python-modules/webrtcvad/default.nix
Normal file
24
pkgs/development/python-modules/webrtcvad/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "webrtcvad";
|
||||||
|
version = "2.0.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "f1bed2fb25b63fb7b1a55d64090c993c9c9167b28485ae0bcdd81cf6ede96aea";
|
||||||
|
};
|
||||||
|
|
||||||
|
# required WAV files for testing are not included in the tarball
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Interface to the Google WebRTC Voice Activity Detector (VAD)";
|
||||||
|
homepage = https://github.com/wiseman/py-webrtcvad;
|
||||||
|
license = with lib.licenses; [ mit ];
|
||||||
|
maintainers = with lib.maintainers; [ prusnak ];
|
||||||
|
};
|
||||||
|
}
|
@ -6110,6 +6110,8 @@ in {
|
|||||||
fastapi = callPackage ../development/python-modules/fastapi { };
|
fastapi = callPackage ../development/python-modules/fastapi { };
|
||||||
|
|
||||||
stringcase = callPackage ../development/python-modules/stringcase { };
|
stringcase = callPackage ../development/python-modules/stringcase { };
|
||||||
|
|
||||||
|
webrtcvad = callPackage ../development/python-modules/webrtcvad { };
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
Reference in New Issue
Block a user