Merge pull request #132590 from fabaff/bump-simplisafe-python

This commit is contained in:
Martin Weinelt
2021-08-04 13:45:17 +02:00
committed by GitHub
3 changed files with 39 additions and 4 deletions
@@ -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" ];
@@ -0,0 +1,26 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-pytz";
version = "2021.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "0hzjz6wgzfyybcfli4rpmfxk49cn6x3slbs2xdmlnckvlahs5pxd";
};
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "pytz-stubs" ];
meta = with lib; {
description = "Typing stubs for pytz";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -8879,6 +8879,8 @@ in {
types-decorator = callPackage ../development/python-modules/types-decorator { };
types-pytz = callPackage ../development/python-modules/types-pytz { };
types-requests = callPackage ../development/python-modules/types-requests { };
typesentry = callPackage ../development/python-modules/typesentry { };