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