python311Packages.aioslimproto: 2.2.0 -> 2.2.1

Changelog: https://github.com/home-assistant-libs/aioslimproto/releases/tag/2.2.1
This commit is contained in:
Fabian Affolter 2023-05-31 08:51:04 +02:00
parent 9c1fd07276
commit d1d32c416c

View File

@ -1,4 +1,5 @@
{ lib
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
@ -7,7 +8,7 @@
buildPythonPackage rec {
pname = "aioslimproto";
version = "2.2.0";
version = "2.2.1";
format = "setuptools";
disabled = pythonOlder "3.9";
@ -16,9 +17,13 @@ buildPythonPackage rec {
owner = "home-assistant-libs";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-3aLAAUaoGkdzjUHFb6aiyVv0fzO8DojN0Y3DTf6h2Ow=";
hash = "sha256-ku96N3n71mrYuott6E6UwbloP6RzM9tiEATvYHzdYnM=";
};
propagatedBuildInputs = [
async-timeout
];
nativeCheckInputs = [
pytestCheckHook
];