python3Packages.pydeconz: 90 -> 91

https://github.com/Kane610/deconz/releases/tag/v91
This commit is contained in:
Robert Schütz 2022-05-04 20:54:27 +00:00
parent 2401e18f68
commit 440f2e1de2

View file

@ -1,6 +1,7 @@
{ lib
, aiohttp
, aioresponses
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, pytest-aiohttp
@ -10,20 +11,21 @@
buildPythonPackage rec {
pname = "pydeconz";
version = "90";
version = "91";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Kane610";
repo = "deconz";
rev = "refs/tags/v${version}";
sha256 = "sha256-DojTqgv3Dr+th2n/gPM70r/5QE487OgyYOBVxVzvcXE=";
hash = "sha256-JoQapWQZPjP9TD6gnIGE23hzBt22kAWDKreTzq3GBWQ=";
};
propagatedBuildInputs = [
aiohttp
async-timeout
];
checkInputs = [