lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.versionfinder: disable failing tests

+21 -3
+21 -3
pkgs/development/python-modules/versionfinder/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, GitPython, pytestCheckHook, backoff, requests }: 1 + { lib 2 + , backoff 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , GitPython 6 + , pytestCheckHook 7 + , pythonOlder 8 + , requests 9 + }: 2 10 3 11 buildPythonPackage rec { 4 12 pname = "versionfinder"; 5 13 version = "1.1.1"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 6 17 7 18 src = fetchFromGitHub { 8 19 owner = "jantman"; ··· 22 33 ]; 23 34 24 35 disabledTestPaths = [ 25 - # acceptance tests use the network 36 + # Acceptance tests use the network 26 37 "versionfinder/tests/test_acceptance.py" 27 38 ]; 28 39 29 - pythonImportsCheck = [ "versionfinder" ]; 40 + disabledTests = [ 41 + # Tests are out-dated 42 + "TestFindPipInfo" 43 + ]; 44 + 45 + pythonImportsCheck = [ 46 + "versionfinder" 47 + ]; 30 48 31 49 meta = with lib; { 32 50 description = "Find the version of another package, whether installed via pip, setuptools or git";