python3Packages.bleak: 0.16.0 -> 0.17.0

https://github.com/hbldh/bleak/releases/tag/v0.17.0
This commit is contained in:
Martin Weinelt 2022-09-14 21:43:27 +02:00
parent 2221765096
commit ee0ba2e1d8

View File

@ -2,33 +2,35 @@
, async-timeout
, bluez
, buildPythonPackage
, dbus-next
, fetchPypi
, dbus-fast
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, typing-extensions
, setuptools
}:
buildPythonPackage rec {
pname = "bleak";
version = "0.16.0";
version = "0.17.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-pUn0PjxdjeRkxytLkFU0w/R4F0bpgV7NUxtyVd4uGcc=";
src = fetchFromGitHub {
owner = "hbldh";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-AnH23AWrLw2jq6gSbx9VoGD8QXeCH5dN7FSVVdj4b3w=";
};
nativeBuildInputs = [
setuptools
poetry-core
];
propagatedBuildInputs = [
async-timeout
dbus-next
dbus-fast
typing-extensions
];