lol

Merge pull request #240450 from mweinelt/tts-0.15.0

tts: 0.14.3 -> 0.15.0

authored by

Martin Weinelt and committed by
GitHub
3456b015 a72ba97e

+54 -5
+43
pkgs/development/python-modules/encodec/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # dependencies 6 + , einops 7 + , numpy 8 + , torch-bin 9 + , torchaudio-bin 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "encodec"; 14 + version = "0.1.1"; 15 + format = "setuptools"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "facebookresearch"; 19 + repo = "encodec"; 20 + rev = "v${version}"; 21 + hash = "sha256-+iJZkX1HoyuNFu9VRxMO6aAzNQybkH9lrQJ5Ao9+/CY="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + einops 26 + numpy 27 + torch-bin 28 + torchaudio-bin 29 + ]; 30 + 31 + pythonImportsCheck = [ "encodec" ]; 32 + 33 + # requires model data from the internet 34 + doCheck = false; 35 + 36 + meta = with lib; { 37 + description = "State-of-the-art deep learning based audio codec supporting both mono 24 kHz audio and stereo 48 kHz audio"; 38 + homepage = "https://github.com/facebookresearch/encodec"; 39 + changelog = "https://github.com/facebookresearch/encodec/blob/${src.rev}/CHANGELOG.md"; 40 + license = licenses.mit; 41 + maintainers = with maintainers; [ hexa ]; 42 + }; 43 + }
+6 -3
pkgs/development/python-modules/wandb/default.nix
··· 256 256 "tests/pytest_tests/unit_tests/test_lib/test_filesystem.py" 257 257 ]; 258 258 259 - # Disable test that fails on darwin due to issue with python3Packages.psutil: 260 - # https://github.com/giampaolo/psutil/issues/1219 261 - disabledTests = lib.optionals stdenv.isDarwin [ 259 + disabledTests = [ 260 + # Timing sensitive 261 + "test_login_timeout" 262 + ] ++ lib.optionals stdenv.isDarwin [ 263 + # Disable test that fails on darwin due to issue with python3Packages.psutil: 264 + # https://github.com/giampaolo/psutil/issues/1219 262 265 "test_tpu_system_stats" 263 266 ]; 264 267
+3 -2
pkgs/tools/audio/tts/default.nix
··· 15 15 in 16 16 python.pkgs.buildPythonApplication rec { 17 17 pname = "tts"; 18 - version = "0.14.3"; 18 + version = "0.15.0"; 19 19 format = "pyproject"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "coqui-ai"; 23 23 repo = "TTS"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-4LojjH6ft9RfftBBFNWmC2pl/YXfgZCXhkZFsELTgCE="; 25 + hash = "sha256-pu0MqNXNQfvxo2VHpiEYIz1OvplydCYPKU/NsZD0mJw="; 26 26 }; 27 27 28 28 postPatch = let ··· 60 60 bnunicodenormalizer 61 61 coqpit 62 62 einops 63 + encodec 63 64 flask 64 65 fsspec 65 66 g2pkk
+2
pkgs/top-level/python-packages.nix
··· 3260 3260 3261 3261 enamlx = callPackage ../development/python-modules/enamlx { }; 3262 3262 3263 + encodec = callPackage ../development/python-modules/encodec { }; 3264 + 3263 3265 energyflip-client = callPackage ../development/python-modules/energyflip-client { }; 3264 3266 3265 3267 energyflow = callPackage ../development/python-modules/energyflow { };