python310Packages.bleak: 0.18.1 -> 0.19.1

This commit is contained in:
Fabian Affolter
2022-11-05 13:29:18 +01:00
committed by Martin Weinelt
parent 482ea02ea0
commit 8d7cec09c3
@@ -5,6 +5,7 @@
, dbus-fast
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, typing-extensions
@@ -12,16 +13,16 @@
buildPythonPackage rec {
pname = "bleak";
version = "0.18.1";
version = "0.19.1";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hbldh";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-2/jJ2C2TudwCAshDBLUQjNMbYa2j4XfW8bXmeWrAyrA=";
hash = "sha256-WNFAN8xE0ULo4fQnPFJJsc/HtrVo1ClxsvxrrhJjvI0=";
};
nativeBuildInputs = [
@@ -35,6 +36,7 @@ buildPythonPackage rec {
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];