mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, dotmap
|
||
|
, fetchPypi
|
||
|
, pexpect
|
||
|
, protobuf
|
||
|
, pygatt
|
||
|
, pypubsub
|
||
|
, pyqrcode
|
||
|
, pyserial
|
||
|
, pythonOlder
|
||
|
, tabulate
|
||
|
, timeago
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "meshtastic";
|
||
|
version = "1.2.30";
|
||
|
disabled = pythonOlder "3.6";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1kjflc2jwnsgxyr2zx1gyykhak9fsgy6hxaxlggsz5sw9b8rdrby";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
dotmap
|
||
|
pexpect
|
||
|
protobuf
|
||
|
pygatt
|
||
|
pypubsub
|
||
|
pyqrcode
|
||
|
pyserial
|
||
|
tabulate
|
||
|
timeago
|
||
|
];
|
||
|
|
||
|
postPatch = ''
|
||
|
# https://github.com/meshtastic/Meshtastic-python/pull/87
|
||
|
substituteInPlace setup.py \
|
||
|
--replace 'with open("README.md", "r") as fh:' "" \
|
||
|
--replace "long_description = fh.read()" "" \
|
||
|
--replace "long_description=long_description," 'long_description="",'
|
||
|
'';
|
||
|
|
||
|
# Project only provides PyPI releases which don't contain the tests
|
||
|
# https://github.com/meshtastic/Meshtastic-python/issues/86
|
||
|
doCheck = false;
|
||
|
pythonImportsCheck = [ "meshtastic" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python API for talking to Meshtastic devices";
|
||
|
homepage = "https://meshtastic.github.io/Meshtastic-python/";
|
||
|
license = with licenses; [ asl20 ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|