lol

Merge pull request #299691 from fabaff/flexget-fix

python311Packages.rpyc: disable failing tests

authored by

Fabian Affolter and committed by
GitHub
72c6ed32 93647be1

+17 -6
+2 -2
pkgs/applications/networking/flexget/default.nix
··· 22 22 sed 's/[~<>=][^;]*//' -i requirements.txt 23 23 ''; 24 24 25 - nativeBuildInputs = with python3.pkgs; [ 25 + build-system = with python3.pkgs; [ 26 26 setuptools 27 27 wheel 28 28 ]; 29 29 30 - propagatedBuildInputs = with python3.pkgs; [ 30 + dependencies = with python3.pkgs; [ 31 31 # See https://github.com/Flexget/Flexget/blob/master/requirements.txt 32 32 apscheduler 33 33 beautifulsoup4
+15 -4
pkgs/development/python-modules/rpyc/default.nix
··· 11 11 buildPythonPackage rec { 12 12 pname = "rpyc"; 13 13 version = "6.0.0"; 14 - format = "pyproject"; 14 + pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "tomerfiliba"; 20 - repo = pname; 20 + repo = "rpyc"; 21 21 rev = "refs/tags/${version}"; 22 22 hash = "sha256-BvXEXZlVbOmKBwnSBCDksUkbT7JPcMX48KZe/Gd5Y8Q="; 23 23 }; 24 24 25 - nativeBuildInputs = [ 25 + build-system = [ 26 26 hatchling 27 27 ]; 28 28 29 - propagatedBuildInputs = [ 29 + dependencies = [ 30 30 plumbum 31 31 ]; 32 32 ··· 42 42 "test_listing" 43 43 "test_pruning" 44 44 "test_rpyc" 45 + "test_instancecheck_across_connections" 46 + # Internal import error 47 + "test_modules" 45 48 # Test is outdated 46 49 # ssl.SSLError: [SSL: NO_CIPHERS_AVAILABLE] no ciphers available (_ssl.c:997) 47 50 "test_ssl_conenction" 51 + ]; 52 + 53 + disabledTestPaths = [ 54 + # Internal import issue 55 + "tests/test_attributes.py" 56 + "tests/test_service_pickle.py" 57 + "tests/test_affinity.py" 58 + "tests/test_magic.py" 48 59 ]; 49 60 50 61 pythonImportsCheck = [