Unverified Commit c85b469f authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python3Packages.microBeesPy: init at 0.3.5 (#435172)

parents 529e1545 c6d8c12c
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  aiohttp,
  paho-mqtt,
  setuptools,
}:

buildPythonPackage rec {
  pname = "microbeespy";
  version = "0.3.5";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "microBeesTech";
    repo = "pythonSDK";
    tag = version;
    hash = "sha256-h3IbWdZ/iHsNlAr/DfASj4dKNkQ4t1mUUeUIs00L8iU=";
  };

  build-system = [ setuptools ];

  dependencies = [
    aiohttp
    paho-mqtt
  ];

  # Package doesn't include tests
  doCheck = false;

  pythonImportsCheck = [ "microBeesPy" ];

  meta = {
    description = "Official microBees Python Library";
    homepage = "https://github.com/microBeesTech/pythonSDK";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.jamiemagee ];
  };
}
+3 −1
Original line number Diff line number Diff line
@@ -3598,7 +3598,8 @@
      ];
    "microbees" =
      ps: with ps; [
      ]; # missing inputs: microBeesPy
        microbeespy
      ];
    "microsoft" =
      ps: with ps; [
        pycsspeechtts
@@ -7409,6 +7410,7 @@
    "meteoclimatic"
    "metoffice"
    "mfi"
    "microbees"
    "microsoft"
    "microsoft_face"
    "microsoft_face_detect"
+2 −0
Original line number Diff line number Diff line
@@ -9199,6 +9199,8 @@ self: super: with self; {
  micloud = callPackage ../development/python-modules/micloud { };
  microbeespy = callPackage ../development/python-modules/microbeespy { };
  microdata = callPackage ../development/python-modules/microdata { };
  microsoft-kiota-abstractions =