Unverified Commit 177f161e authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #235141 from fabaff/aioslimproto-bump

python311Packages.aioslimproto: 2.2.0 -> 2.2.1
parents 4a6b1318 d1d32c41
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
{ 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
  ];