python312Packages.aiolifx: refactor

This commit is contained in:
Fabian Affolter 2024-04-06 17:33:53 +02:00
parent ececef9cce
commit 6774faa424
1 changed files with 6 additions and 6 deletions

View File

@ -1,12 +1,12 @@
{ lib
, async-timeout
, bitstring
, buildPythonPackage
, click
, fetchPypi
, buildPythonPackage
, pythonOlder
, ifaddr
, inquirerpy
, bitstring
, pythonOlder
, setuptools
}:
@ -22,11 +22,11 @@ buildPythonPackage rec {
hash = "sha256-E3UxNTqss3urpMTwhLhIoAnBekGOIyFy0+sOj3mGlss=";
};
nativeBuildInputs = [
build-system = [
setuptools
];
propagatedBuildInputs = [
dependencies = [
async-timeout
bitstring
click
@ -43,10 +43,10 @@ buildPythonPackage rec {
meta = with lib; {
description = "Module for local communication with LIFX devices over a LAN";
mainProgram = "aiolifx";
homepage = "https://github.com/frawau/aiolifx";
changelog = "https://github.com/frawau/aiolifx/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ netixx ];
mainProgram = "aiolifx";
};
}