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