python313Packages.faster-whisper: 1.1.0 -> 1.1.1 (#372406)
This commit is contained in:
@@ -19,14 +19,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "faster-whisper";
|
||||
version = "1.1.0";
|
||||
version = "1.1.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SYSTRAN";
|
||||
repo = "faster-whisper";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-oJBCEwTfon80XQ9XIgnRw0SLvpwX0L5jnezwG0jv3Eg=";
|
||||
hash = "sha256-1j0ZNQY+P7ZflFCxKkFncJl7Rwuf3AMhzsS6CO9uLD0=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "standard-imghdr";
|
||||
version = "3.13.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "youknowone";
|
||||
repo = "python-deadlib";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-vhGFTd1yXL4Frqli5D1GwOatwByDjvcP8sxgkdu6Jqg=";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/imghdr";
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "imghdr" ];
|
||||
|
||||
meta = {
|
||||
description = "Python dead batteries. See PEP 594";
|
||||
homepage = "https://github.com/youknowone/python-deadlib";
|
||||
license = lib.licenses.psfl;
|
||||
maintainers = with lib.maintainers; [ hexa ];
|
||||
};
|
||||
}
|
||||
@@ -12,6 +12,7 @@
|
||||
absl-py,
|
||||
google-auth-oauthlib,
|
||||
setuptools,
|
||||
standard-imghdr,
|
||||
tensorboard-data-server,
|
||||
tensorboard-plugin-wit,
|
||||
tensorboard-plugin-profile,
|
||||
@@ -47,6 +48,7 @@ buildPythonPackage rec {
|
||||
numpy
|
||||
protobuf
|
||||
setuptools
|
||||
standard-imghdr
|
||||
tensorboard-data-server
|
||||
tensorboard-plugin-profile
|
||||
tensorboard-plugin-wit
|
||||
|
||||
@@ -87,7 +87,6 @@
|
||||
# dependencies for torch.utils.tensorboard
|
||||
pillow,
|
||||
six,
|
||||
future,
|
||||
tensorboard,
|
||||
protobuf,
|
||||
|
||||
@@ -298,6 +297,9 @@ buildPythonPackage rec {
|
||||
"# Upstream: set(CUDAToolkit_ROOT"
|
||||
substituteInPlace third_party/gloo/cmake/Cuda.cmake \
|
||||
--replace-warn "find_package(CUDAToolkit 7.0" "find_package(CUDAToolkit"
|
||||
|
||||
# annotations (3.7), print_function (3.0), with_statement (2.6) are all supported
|
||||
sed -i -e "/from __future__ import/d" **.py
|
||||
''
|
||||
+ lib.optionalString rocmSupport ''
|
||||
# https://github.com/facebookincubator/gloo/pull/297
|
||||
@@ -529,7 +531,6 @@ buildPythonPackage rec {
|
||||
# the following are required for tensorboard support
|
||||
pillow
|
||||
six
|
||||
future
|
||||
tensorboard
|
||||
protobuf
|
||||
|
||||
|
||||
@@ -1004,7 +1004,7 @@ self: super: with self; {
|
||||
|
||||
audio-metadata = callPackage ../development/python-modules/audio-metadata { };
|
||||
|
||||
audioop-lts = callPackage ../development/python-modules/audioop-lts { };
|
||||
audioop-lts = if pythonAtLeast "3.13" then callPackage ../development/python-modules/audioop-lts { } else null;
|
||||
|
||||
audioread = callPackage ../development/python-modules/audioread { };
|
||||
|
||||
@@ -15532,11 +15532,13 @@ self: super: with self; {
|
||||
|
||||
stm32loader = callPackage ../development/python-modules/stm32loader { };
|
||||
|
||||
standard-aifc = callPackage ../development/python-modules/standard-aifc { };
|
||||
standard-aifc = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-aifc { } else null;
|
||||
|
||||
standard-chunk = callPackage ../development/python-modules/standard-chunk { };
|
||||
standard-chunk = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-chunk { } else null;
|
||||
|
||||
standard-telnetlib = callPackage ../development/python-modules/standard-telnetlib { };
|
||||
standard-imghdr = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-imghdr { } else null;
|
||||
|
||||
standard-telnetlib = if pythonAtLeast "3.13" then callPackage ../development/python-modules/standard-telnetlib { } else null;
|
||||
|
||||
stone = callPackage ../development/python-modules/stone { };
|
||||
|
||||
|
||||
Reference in New Issue
Block a user