Skip to content

Commit

Permalink
python312Packages.aioshelly: 11.4.1 -> 11.4.2 (#339365)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored Sep 4, 2024
2 parents f81be55 + d37c3e5 commit a400095
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions pkgs/development/python-modules/aioshelly/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,25 @@
fetchFromGitHub,
habluetooth,
orjson,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
setuptools,
yarl,
}:

buildPythonPackage rec {
pname = "aioshelly";
version = "11.4.1";
version = "11.4.2";
pyproject = true;

disabled = pythonOlder "3.10";
disabled = pythonOlder "3.11";

src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = "aioshelly";
rev = "refs/tags/${version}";
hash = "sha256-qT5THlz1bd222NnY9EyJ9d0IX3CmXwUKvBntsl/yV90=";
hash = "sha256-aJA+iE8cyUPrL2n72N8/HI8//h0qR6k/hgD34vpwI+0=";
};

build-system = [ setuptools ];
Expand All @@ -35,8 +37,10 @@ buildPythonPackage rec {
yarl
];

# Project has no test
doCheck = false;
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];

pythonImportsCheck = [ "aioshelly" ];

Expand Down

0 comments on commit a400095

Please sign in to comment.