python313Packages.aiobtclientrpc: disable outdated tests (#446787)

Changed files
+10 -13
pkgs
by-name
up
upsies
development
python-modules
aiobtclientrpc
+6 -7
pkgs/by-name/up/upsies/package.nix
···
in
python3Packages.buildPythonApplication rec {
pname = "upsies";
-
version = "2025.04.21";
pyproject = true;
src = fetchFromGitea {
···
owner = "plotski";
repo = "upsies";
tag = "v${version}";
-
hash = "sha256-gjv0HOFV1VdfhVejGbV2+bMxP9BPfB3/3p6nOAYMS34=";
};
patches = [
···
})
];
-
build-system = with python3Packages; [
-
setuptools
-
];
dependencies = with python3Packages; [
aiobtclientapi
···
with python3Packages;
[
pytest-asyncio
pytest-mock
pytest-timeout
-
pytest-httpserver
pytestCheckHook
trustme
]
···
meta = with lib; {
description = "Toolkit for collecting, generating, normalizing and sharing video metadata";
homepage = "https://upsies.readthedocs.io/";
-
license = with licenses; [ gpl3Plus ];
mainProgram = "upsies";
maintainers = with maintainers; [ ambroisie ];
};
···
in
python3Packages.buildPythonApplication rec {
pname = "upsies";
+
version = "2025.09.20";
pyproject = true;
src = fetchFromGitea {
···
owner = "plotski";
repo = "upsies";
tag = "v${version}";
+
hash = "sha256-g6LS/kJ13IfmDxPJ6hnX4rSxr6TroPM+sIwQeqdHNVs=";
};
patches = [
···
})
];
+
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
aiobtclientapi
···
with python3Packages;
[
pytest-asyncio
+
pytest-cov-stub
+
pytest-httpserver
pytest-mock
pytest-timeout
pytestCheckHook
trustme
]
···
meta = with lib; {
description = "Toolkit for collecting, generating, normalizing and sharing video metadata";
homepage = "https://upsies.readthedocs.io/";
+
license = licenses.gpl3Plus;
mainProgram = "upsies";
maintainers = with maintainers; [ ambroisie ];
};
+4 -6
pkgs/development/python-modules/aiobtclientrpc/default.nix
···
hash = "sha256-2nBrIMlYUI4PwirkiSJSkw5zw2Kc/KoVRyIIYYx4iYs=";
};
-
pythonRelaxDeps = [
-
"async-timeout"
-
];
-
build-system = [
-
setuptools
-
];
dependencies = [
async-timeout
···
"test_timeout[rtorrent_http]"
"test_event_subscriptions_survive_reconnecting[rtorrent_http]"
"test_waiting_for_event[rtorrent_http]"
];
pythonImportsCheck = [ "aiobtclientrpc" ];
···
hash = "sha256-2nBrIMlYUI4PwirkiSJSkw5zw2Kc/KoVRyIIYYx4iYs=";
};
+
pythonRelaxDeps = [ "async-timeout" ];
+
build-system = [ setuptools ];
dependencies = [
async-timeout
···
"test_timeout[rtorrent_http]"
"test_event_subscriptions_survive_reconnecting[rtorrent_http]"
"test_waiting_for_event[rtorrent_http]"
+
# Tests are outdated
+
"test_DelugeRPCRequest_equality"
];
pythonImportsCheck = [ "aiobtclientrpc" ];