Merge pull request #220056 from fabaff/python-otbr-api-bump

python310Packages.python-otbr-api: 1.0.5 -> 1.0.7
This commit is contained in:
Fabian Affolter 2023-03-08 08:02:28 +01:00 committed by GitHub
commit 087e08d00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
{ lib { lib
, aiohttp , aiohttp
, bitstruct
, buildPythonPackage , buildPythonPackage
, cryptography , cryptography
, fetchFromGitHub , fetchFromGitHub
@ -11,7 +12,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-otbr-api"; pname = "python-otbr-api";
version = "1.0.5"; version = "1.0.7";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "home-assistant-libs"; owner = "home-assistant-libs";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-yI7TzVJGSWdi+NKZ0CCOi3BC4WIqFuS7YZgihfWDBSY="; hash = "sha256-R6H+h6IbyI/Qhwb6ACT2sx/YWmLDMyg4gLMJdmNj2wk=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -29,6 +30,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ propagatedBuildInputs = [
aiohttp aiohttp
bitstruct
cryptography cryptography
voluptuous voluptuous
]; ];