3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.simplisafe-python: 11.0.2 -> 11.0.3

This commit is contained in:
Fabian Affolter 2021-08-03 22:46:06 +02:00 committed by Martin Weinelt
parent 606e53dc85
commit 711fbaa0b0

View file

@ -6,16 +6,17 @@
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, pytz
, types-pytz
, voluptuous
}:
buildPythonPackage rec {
pname = "simplisafe-python";
version = "11.0.2";
version = "11.0.3";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -23,7 +24,7 @@ buildPythonPackage rec {
owner = "bachya";
repo = pname;
rev = version;
sha256 = "sha256-sIv7zoLp+1CfeyhVYWMp93TkNk+h14WawOJOQMhwAp8=";
sha256 = "17zld62q4qw2z2q7i5kkpnyc3immgc4xs009hp53jq4qc38w0jm5";
};
nativeBuildInputs = [ poetry-core ];
@ -32,16 +33,22 @@ buildPythonPackage rec {
aiohttp
backoff
pytz
types-pytz
voluptuous
];
checkInputs = [
aioresponses
asynctest
pytest-asyncio
pytest-aiohttp
pytestCheckHook
];
disabledTests = [
# simplipy/api.py:253: InvalidCredentialsError
"test_request_error_failed_retry"
];
disabledTestPaths = [ "examples/" ];
pythonImportsCheck = [ "simplipy" ];