python3Packages.aiolifx: modernize derivation

This commit is contained in:
Sarah Clark
2025-10-21 15:41:34 -07:00
parent a8ae0941a3
commit 003b5ac29b
@@ -7,7 +7,6 @@
fetchPypi,
ifaddr,
inquirerpy,
pythonOlder,
setuptools,
}:
@@ -16,8 +15,6 @@ buildPythonPackage rec {
version = "1.2.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-h82KPrHcWUUrQFyMy3fY6BmQFA5a4DFJdhJ6zRnKMsc=";
@@ -38,12 +35,12 @@ buildPythonPackage rec {
pythonImportsCheck = [ "aiolifx" ];
meta = with lib; {
meta = {
description = "Module for local communication with LIFX devices over a LAN";
homepage = "https://github.com/aiolifx/aiolifx";
changelog = "https://github.com/aiolifx/aiolifx/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ netixx ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ netixx ];
mainProgram = "aiolifx";
};
}