python3Packages.microBeesPy: init at 0.3.5 (#435172)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
@@ -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"
|
||||
|
||||
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user