python310Packages.hap-python: 4.7.0 -> 4.7.1

https://github.com/ikalchev/HAP-python/blob/4.7.1/CHANGELOG.md
This commit is contained in:
Martin Weinelt 2023-08-02 19:57:15 +02:00
parent 80d182ceab
commit c32fe340cb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,4 +1,5 @@
{ lib
, async-timeout
, buildPythonPackage
, base36
, chacha20poly1305-reuseable
@ -16,7 +17,7 @@
buildPythonPackage rec {
pname = "hap-python";
version = "4.7.0";
version = "4.7.1";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -25,10 +26,11 @@ buildPythonPackage rec {
owner = "ikalchev";
repo = "HAP-python";
rev = "refs/tags/${version}";
hash = "sha256-/UBJh1m+WscN9I85/kvlNQnowNybEDyGVuQk4HBDWLE=";
hash = "sha256-M/STfco+Bx+KxBT1lUIrYyGSjBcPw2UVX02gNOROke4=";
};
propagatedBuildInputs = [
async-timeout
chacha20poly1305-reuseable
cryptography
h11