python310Packages.aiounifi: 49 -> 50

https://github.com/Kane610/aiounifi/releases/tag/v50
This commit is contained in:
Martin Weinelt 2023-08-02 19:50:28 +02:00
parent ac611cc81c
commit 0141dae87b
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,6 +1,7 @@
{ lib
, aiohttp
, aioresponses
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, orjson
@ -8,11 +9,12 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, segno
}:
buildPythonPackage rec {
pname = "aiounifi";
version = "49";
version = "50";
format = "setuptools";
disabled = pythonOlder "3.9";
@ -21,12 +23,14 @@ buildPythonPackage rec {
owner = "Kane610";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-GZ++R8NUhpUQbeNhavWnIhk1AuPnEAAHRq9ZYdeHFDc=";
hash = "sha256-ydSKXydtOJaAI2PCPX+8jh4w9otX64Lj7QwbasTdWf0=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
orjson
segno
];
nativeCheckInputs = [