mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 08:26:37 +01:00
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
97 lines
1.9 KiB
Nix
97 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
cacert,
|
|
faster-whisper,
|
|
flac,
|
|
google-cloud-speech,
|
|
groq,
|
|
httpx,
|
|
openai-whisper,
|
|
openai,
|
|
pocketsphinx,
|
|
pyaudio,
|
|
pytestCheckHook,
|
|
requests,
|
|
respx,
|
|
setuptools,
|
|
soundfile,
|
|
standard-aifc,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "speechrecognition";
|
|
version = "3.14.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Uberi";
|
|
repo = "speech_recognition";
|
|
tag = version;
|
|
hash = "sha256-g//KKxPRe1pWVJo7GsRNIV59r0J7XJEoXvH0tGuV3Jk=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Remove Bundled binaries
|
|
rm speech_recognition/flac-*
|
|
rm -r third-party
|
|
|
|
substituteInPlace speech_recognition/audio.py \
|
|
--replace-fail 'shutil_which("flac")' '"${lib.getExe flac}"'
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
standard-aifc
|
|
typing-extensions
|
|
];
|
|
|
|
optional-dependencies = {
|
|
assemblyai = [ requests ];
|
|
audio = [ pyaudio ];
|
|
faster-whisper = [ faster-whisper ];
|
|
google-cloud = [ google-cloud-speech ];
|
|
groq = [
|
|
groq
|
|
httpx
|
|
];
|
|
openai = [
|
|
httpx
|
|
openai
|
|
];
|
|
pocketsphinx = [ pocketsphinx ];
|
|
whisper-local = [
|
|
openai-whisper
|
|
soundfile
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
groq
|
|
pytestCheckHook
|
|
pocketsphinx
|
|
respx
|
|
]
|
|
++ lib.concatAttrValues optional-dependencies;
|
|
|
|
pythonImportsCheck = [ "speech_recognition" ];
|
|
|
|
disabledTests = [
|
|
# Parsed string does not match expected
|
|
"test_sphinx_keywords"
|
|
];
|
|
|
|
meta = {
|
|
description = "Speech recognition module for Python, supporting several engines and APIs, online and offline";
|
|
homepage = "https://github.com/Uberi/speech_recognition";
|
|
changelog = "https://github.com/Uberi/speech_recognition/releases/tag/${src.tag}";
|
|
license = with lib.licenses; [
|
|
gpl2Only
|
|
bsd3
|
|
];
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|