python3Packages.aiolifx: 0.6.10 -> 0.7.0
This commit is contained in:
parent
81ba8bbd67
commit
40eae2c915
1 changed files with 12 additions and 7 deletions
|
@ -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 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue