Merge pull request #270642 from fabaff/evohome-async-bump

python311Packages.evohome-async: 0.4.9 -> 0.4.11
This commit is contained in:
Fabian Affolter 2023-11-29 10:08:52 +01:00 committed by GitHub
commit b04e49ca82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, aiohttp
, buildPythonPackage
, click
, fetchFromGitHub
, hatchling
, pythonOlder
@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "evohome-async";
version = "0.4.9";
version = "0.4.11";
pyproject = true;
disabled = pythonOlder "3.11";
@ -18,7 +19,7 @@ buildPythonPackage rec {
owner = "zxdavb";
repo = "evohome-async";
rev = "refs/tags/${version}";
hash = "sha256-4AhxvUkLiej7OSj9Y19tJnVCzNlC5PF6KB5zTHN8gLA=";
hash = "sha256-mx4nBEgXeBxcN1pYZfTKPGbNhvSz8l38MyRRpL82lf0=";
};
nativeBuildInputs = [
@ -27,6 +28,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [
aiohttp
click
voluptuous
];