nixpkgs/pkgs/development/python-modules/simplisafe-python/default.nix
Martin Weinelt 6847ca7d13
python3Packages.simplisafe-python: disable test_update_error
if "403" in str(err):
>               raise InvalidCredentialsError("Unauthorized") from err
E               simplipy.errors.InvalidCredentialsError: Unauthorized

simplipy/api.py:253: InvalidCredentialsError
2021-08-07 17:20:27 +02:00

66 lines
1.2 KiB
Nix

{ lib
, aiohttp
, aioresponses
, asynctest
, backoff
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, pytz
, types-pytz
, voluptuous
}:
buildPythonPackage rec {
pname = "simplisafe-python";
version = "11.0.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bachya";
repo = pname;
rev = version;
sha256 = "17zld62q4qw2z2q7i5kkpnyc3immgc4xs009hp53jq4qc38w0jm5";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
aiohttp
backoff
pytz
types-pytz
voluptuous
];
checkInputs = [
aioresponses
asynctest
pytest-aiohttp
pytestCheckHook
];
disabledTests = [
# simplipy/api.py:253: InvalidCredentialsError
"test_request_error_failed_retry"
"test_update_error"
];
disabledTestPaths = [ "examples/" ];
pythonImportsCheck = [ "simplipy" ];
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "Python library the SimpliSafe API";
homepage = "https://simplisafe-python.readthedocs.io/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}