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