python313Packages.av: 13.1.0 -> 14.1.0 (#380750)

Changed files
+18 -8
pkgs
development
python-modules
servers
home-assistant
+2 -8
pkgs/development/python-modules/av/default.nix
···
buildPythonPackage rec {
pname = "av";
-
version = "13.1.0";
+
version = "14.1.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "PyAV-Org";
repo = "PyAV";
tag = "v${version}";
-
hash = "sha256-x2a9SC4uRplC6p0cD7fZcepFpRidbr6JJEEOaGSWl60=";
+
hash = "sha256-GYdt6KMMmDSyby447MbShL2GbrH8R1UuOeiVlztGuS4=";
};
build-system = [
···
pytestCheckHook
];
-
disabledTests = [
-
# av.error.InvalidDataError: [Errno 1094995529] Invalid data found when processing input: 'custom_io_output.mpd'
-
"test_writing_to_custom_io_dash"
-
];
-
# `__darwinAllowLocalNetworking` doesn’t work for these; not sure why.
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
"tests/test_timeout.py"
···
"av.datasets"
"av.descriptor"
"av.dictionary"
-
"av.enum"
"av.error"
"av.filter"
"av.format"
+2
pkgs/development/python-modules/manim/default.nix
···
pythonImportsCheck = [ "manim" ];
meta = {
+
# https://github.com/ManimCommunity/manim/pull/4037
+
broken = lib.versionAtLeast av.version "14";
description = "Animation engine for explanatory math videos - Community version";
longDescription = ''
Manim is an animation engine for explanatory math videos. It's used to
+10
pkgs/servers/home-assistant/default.nix
···
};
});
+
av = super.av.overridePythonAttrs (rec {
+
version = "13.1.0";
+
src = fetchFromGitHub {
+
owner = "PyAV-Org";
+
repo = "PyAV";
+
tag = "v${version}";
+
hash = "sha256-x2a9SC4uRplC6p0cD7fZcepFpRidbr6JJEEOaGSWl60=";
+
};
+
});
+
eq3btsmart = super.eq3btsmart.overridePythonAttrs (oldAttrs: rec {
version = "1.4.1";
src = fetchFromGitHub {
+4
pkgs/servers/home-assistant/tests.nix
···
# tries to retrieve file from github
"test_non_text_stdout_capture"
];
+
stream = [
+
# crashes with x265>=4.0
+
"test_h265_video_is_hvc1"
+
];
websocket_api = [
# AssertionError: assert 'unknown_error' == 'template_error'
"test_render_template_with_timeout"