python3Packages.aiolifx: 0.6.10 -> 0.7.0

This commit is contained in:
Fabian Affolter 2021-09-04 11:40:17 +02:00
parent 81ba8bbd67
commit 40eae2c915

View file

@ -1,31 +1,36 @@
{ lib { lib
, fetchPypi , fetchPypi
, buildPythonPackage , buildPythonPackage
, isPy3k , pythonOlder
, ifaddr , ifaddr
, bitstring , bitstring
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiolifx"; pname = "aiolifx";
version = "0.6.10"; version = "0.7.0";
disabled = pythonOlder "3.4";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "b3aaf814dbc03666b22b08103990f260e58616ea64f2a28396653ef3b5fad4f9"; sha256 = "sha256-9FwTYcaXwGMMnhp+MXe1Iu8Og5aHL6qo9SVKWHFtc7o=";
}; };
propagatedBuildInputs = [
bitstring
ifaddr
];
# tests are not implemented # tests are not implemented
doCheck = false; doCheck = false;
disabled = !isPy3k; pythonImportsCheck = [ "aiolifx" ];
propagatedBuildInputs = [ bitstring ifaddr ];
meta = with lib; { meta = with lib; {
description = "API for local communication with LIFX devices over a LAN";
homepage = "https://github.com/frawau/aiolifx"; homepage = "https://github.com/frawau/aiolifx";
license = licenses.mit; license = licenses.mit;
description = "API for local communication with LIFX devices over a LAN with asyncio";
maintainers = with maintainers; [ netixx ]; maintainers = with maintainers; [ netixx ];
}; };
} }