lol
0
fork

Configure Feed

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

python39Packages.ismartgate: disable failing tests

+12 -2
+12 -2
pkgs/development/python-modules/ismartgate/default.nix
··· 18 18 buildPythonPackage rec { 19 19 pname = "ismartgate"; 20 20 version = "4.0.4"; 21 + format = "setuptools"; 22 + 21 23 disabled = pythonOlder "3.7"; 22 24 23 25 src = fetchFromGitHub { 24 26 owner = "bdraco"; 25 27 repo = pname; 26 28 rev = "v${version}"; 27 - sha256 = "sha256-yh7gPyy3VMdyINBCZo5K2wA0BY7yYgHrKGZRB/pm77U="; 29 + hash = "sha256-yh7gPyy3VMdyINBCZo5K2wA0BY7yYgHrKGZRB/pm77U="; 28 30 }; 29 31 30 32 propagatedBuildInputs = [ ··· 49 51 --replace '"pytest-runner>=5.2",' "" 50 52 ''; 51 53 52 - pythonImportsCheck = [ "ismartgate" ]; 54 + pythonImportsCheck = [ 55 + "ismartgate" 56 + ]; 57 + 58 + disabledTestPaths = [ 59 + # Tests are out-dated 60 + "ismartgate/tests/test_init.py" 61 + ]; 62 + 53 63 54 64 meta = with lib; { 55 65 description = "Python module to work with the ismartgate and gogogate2 API";