change dependency to meshcore v2.2.19

This commit is contained in:
Florent 2026-03-05 13:58:40 -04:00
parent 7caca2db79
commit d01a9f6ffc
3 changed files with 6 additions and 5 deletions

View file

@ -17,12 +17,12 @@
meshcore = python3Packages.buildPythonPackage rec { meshcore = python3Packages.buildPythonPackage rec {
pname = "meshcore"; pname = "meshcore";
version = "2.2.15"; version = "2.2.19";
pyproject = true; pyproject = true;
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-xCi3lZWhpKMXnsxppjZnpoe+iet84MMSrQtjTeGqVag="; sha256 = "sha256-InM1BbTtod7ljQ/QEvNWOIIpVUKvRDNATt3e7MVotlw=";
}; };
build-system = [ python3Packages.hatchling ]; build-system = [ python3Packages.hatchling ];
@ -31,6 +31,7 @@
python3Packages.bleak python3Packages.bleak
python3Packages.pycayennelpp python3Packages.pycayennelpp
python3Packages.pyserial-asyncio-fast python3Packages.pyserial-asyncio-fast
python3Packages.pycryptodome
]; ];
pythonImportsCheck = [ "meshcore" ]; pythonImportsCheck = [ "meshcore" ];

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "meshcore-cli" name = "meshcore-cli"
version = "1.4.6" version = "1.4.7"
authors = [ authors = [
{ name="Florent de Lamotte", email="florent@frizoncorrea.fr" }, { name="Florent de Lamotte", email="florent@frizoncorrea.fr" },
] ]
@ -17,7 +17,7 @@ classifiers = [
] ]
license = "MIT" license = "MIT"
license-files = ["LICEN[CS]E*"] license-files = ["LICEN[CS]E*"]
dependencies = [ "meshcore >= 2.2.16", dependencies = [ "meshcore >= 2.2.17",
"bleak >= 0.22", "bleak >= 0.22",
"prompt_toolkit >= 3.0.50", "prompt_toolkit >= 3.0.50",
"requests >= 2.28.0" ] "requests >= 2.28.0" ]

View file

@ -35,7 +35,7 @@ import re
from meshcore import MeshCore, EventType, logger from meshcore import MeshCore, EventType, logger
# Version # Version
VERSION = "v1.4.6" VERSION = "v1.4.7"
# default ble address is stored in a config file # default ble address is stored in a config file
MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/" MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/"