python3Packages.aioshelly: 1.0.4 -> 1.0.5

This commit is contained in:
Fabian Affolter 2021-11-21 10:30:36 +01:00
parent b56d7a70a7
commit e70b543e12

View file

@ -3,17 +3,21 @@
, buildPythonPackage
, fetchFromGitHub
, netifaces
, pythonOlder
}:
buildPythonPackage rec {
pname = "aioshelly";
version = "1.0.4";
version = "1.0.5";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "home-assistant-libs";
repo = pname;
rev = version;
sha256 = "sha256-Om+v+cGisfx2PkH/J08loZioUO6y9wi5+6kd2T+dfOo=";
sha256 = "sha256-AaEnVMup/sGR3ENtN6NF/CzG05P4Er5LI8mG5LNVzAo=";
};
propagatedBuildInputs = [
@ -23,7 +27,10 @@ buildPythonPackage rec {
# Project has no test
doCheck = false;
pythonImportsCheck = [ "aioshelly" ];
pythonImportsCheck = [
"aioshelly"
];
meta = with lib; {
description = "Python library to control Shelly";