Merge pull request #302119 from r-ryantm/auto-update/python312Packages.aiolifx

python312Packages.aiolifx: 1.0.1 -> 1.0.2
This commit is contained in:
Fabian Affolter 2024-04-06 20:31:50 +02:00 committed by GitHub
commit 4dd072b68c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 20 deletions

View File

@ -1,32 +1,31 @@
{ lib
, async-timeout
, click
, fetchPypi
, buildPythonPackage
, pythonOlder
, ifaddr
, inquirerpy
, bitstring
, setuptools
{
lib,
async-timeout,
bitstring,
buildPythonPackage,
click,
fetchPypi,
ifaddr,
inquirerpy,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiolifx";
version = "1.0.1";
version = "1.0.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-r42M7aqKKLdGgRaCym44M1nvu0vTGK7ricBp/AsbFRk=";
hash = "sha256-E3UxNTqss3urpMTwhLhIoAnBekGOIyFy0+sOj3mGlss=";
};
nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
async-timeout
bitstring
click
@ -37,16 +36,14 @@ buildPythonPackage rec {
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"aiolifx"
];
pythonImportsCheck = [ "aiolifx" ];
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";
};
}