python311Packages.bond-async: 0.1.23 -> 0.2.1

Diff: https://github.com/bondhome/bond-async/compare/refs/tags/v0.1.23...v0.2.1

Changelog: https://github.com/bondhome/bond-async/releases/tag/v0.2.1
This commit is contained in:
Fabian Affolter 2023-07-15 22:29:50 +02:00
parent 6a0f5dfa41
commit 9fb9bf7e66

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, aiohttp
, aioresponses
, orjson
, pytest-asyncio
, pytestCheckHook
, pythonOlder
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "bond-async";
version = "0.1.23";
version = "0.2.1";
disabled = pythonOlder "3.7";
@ -20,11 +21,12 @@ buildPythonPackage rec {
owner = "bondhome";
repo = "bond-async";
rev = "refs/tags/v${version}";
hash = "sha256-Kht2O/+F7Nw78p1Q6NGugm2bfAwZAUWAs30htoWkafI=";
hash = "sha256-YRJHUOYFLf4dtQGIFKHLdUQxWTnZzG1MPirMsGvDor8=";
};
propagatedBuildInputs = [
aiohttp
orjson
];
nativeCheckInputs = [
@ -37,11 +39,11 @@ buildPythonPackage rec {
"bond_async"
];
meta = {
meta = with lib; {
description = "Asynchronous Python wrapper library over Bond Local API";
homepage = "https://github.com/bondhome/bond-async";
changelog = "https://github.com/bondhome/bond-async/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}