python3Packages.meshcore: init at 2.1.5
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user