Merge pull request #116828 from r-ryantm/auto-update/python3.8-digi-xbee
python38Packages.digi-xbee: 1.3.0 -> 1.4.0
This commit is contained in:
commit
39306e9671
|
@ -2,12 +2,12 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "digi-xbee";
|
pname = "digi-xbee";
|
||||||
version = "1.3.0";
|
version = "1.4.0";
|
||||||
disabled = isPy27;
|
disabled = isPy27;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "2ed798faee0853bf7ae9ca5aa4bdcbab496e3c2d56c9f0719a8e3e0d13270891";
|
sha256 = "664737d1aab453ea40b9745f1ee1e88920acff1cce2e07c42e7f5aa64a16e6aa";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pyserial srp ];
|
propagatedBuildInputs = [ pyserial srp ];
|
||||||
|
@ -15,6 +15,24 @@ buildPythonPackage rec {
|
||||||
# Upstream doesn't contain unit tests, only functional tests which require specific hardware
|
# Upstream doesn't contain unit tests, only functional tests which require specific hardware
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"digi.xbee.models"
|
||||||
|
"digi.xbee.packets"
|
||||||
|
"digi.xbee.util"
|
||||||
|
"digi.xbee.comm_interface"
|
||||||
|
"digi.xbee.devices"
|
||||||
|
"digi.xbee.exception"
|
||||||
|
"digi.xbee.filesystem"
|
||||||
|
"digi.xbee.firmware"
|
||||||
|
"digi.xbee.io"
|
||||||
|
"digi.xbee.profile"
|
||||||
|
"digi.xbee.reader"
|
||||||
|
"digi.xbee.recovery"
|
||||||
|
"digi.xbee.sender"
|
||||||
|
"digi.xbee.serial"
|
||||||
|
"digi.xbee.xsocket"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Python library to interact with Digi International's XBee radio frequency modules";
|
description = "Python library to interact with Digi International's XBee radio frequency modules";
|
||||||
homepage = "https://github.com/digidotcom/xbee-python";
|
homepage = "https://github.com/digidotcom/xbee-python";
|
||||||
|
|
Loading…
Reference in New Issue