python310Packages.aiolifx: 0.8.9 -> 0.8.10

Changelog: https://github.com/frawau/aiolifx/releases/tag/0.8.10
This commit is contained in:
Fabian Affolter
2023-04-13 23:05:09 +02:00
committed by Martin Weinelt
parent df4d6e21a1
commit 470e6c86ab
@@ -1,4 +1,5 @@
{ lib
, async-timeout
, fetchPypi
, buildPythonPackage
, pythonOlder
@@ -8,17 +9,18 @@
buildPythonPackage rec {
pname = "aiolifx";
version = "0.8.9";
version = "0.8.10";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Ih82dNDZd3sbGHhxDTtzJQXkjn6Pgefb0S24gttiOO8=";
hash = "sha256-NiNKFrWxpGkwbb7tFEDD5jZ6ETW20BBIqrdjCsL/DkY=";
};
propagatedBuildInputs = [
async-timeout
bitstring
ifaddr
];
@@ -33,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module for local communication with LIFX devices over a LAN";
homepage = "https://github.com/frawau/aiolifx";
changelog = "https://github.com/frawau/aiolifx/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ netixx ];
};