python3Packages.meshcore: init at 2.1.5

This commit is contained in:
Haylin Moore
2025-09-06 20:25:44 +02:00
parent cf0760e7be
commit 87f19f9c8c
2 changed files with 43 additions and 0 deletions
@@ -0,0 +1,41 @@
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
hatchling,
# dependencies
bleak,
pycayennelpp,
pyserial-asyncio,
}:
buildPythonPackage rec {
pname = "meshcore";
version = "2.1.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-gXofzLmydfN0Shrrlbwk+6Rr2kARPqypP6+43rHZOJE=";
};
build-system = [ hatchling ];
dependencies = [
bleak
pycayennelpp
pyserial-asyncio
];
pythonImportsCheck = [ "meshcore" ];
meta = with lib; {
description = "Python library for communicating with meshcore companion radios";
homepage = "https://github.com/meshcore-dev/meshcore_py";
license = licenses.mit;
maintainers = [ maintainers.haylin ];
};
}
+2
View File
@@ -9177,6 +9177,8 @@ self: super: with self; {
meshcat = callPackage ../development/python-modules/meshcat { };
meshcore = callPackage ../development/python-modules/meshcore { };
meshio = callPackage ../development/python-modules/meshio { };
meshlabxml = callPackage ../development/python-modules/meshlabxml { };