Unverified Commit 5203378d authored by Winter's avatar Winter Committed by GitHub
Browse files

python3Packages.meshcore: init at 2.1.5 (#440687)

parents c1fd1eba 87f19f9c
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };