python3Packages.beewi-smartclim: init at 0.0.10
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
btlewrap,
|
||||
bluepy,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "beewi-smartclim";
|
||||
version = "0.0.10";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alemuro";
|
||||
repo = "beewi_smartclim";
|
||||
tag = version;
|
||||
hash = "sha256-xdr545Q4DFhup2BCMZZ1WYWgt97qT6oipIHWcsp90+A=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
btlewrap
|
||||
bluepy
|
||||
];
|
||||
|
||||
# No tests available
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "beewi_smartclim" ];
|
||||
|
||||
meta = {
|
||||
description = "Library to read data from BeeWi SmartClim sensor using Bluetooth LE";
|
||||
homepage = "https://github.com/alemuro/beewi_smartclim";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jamiemagee ];
|
||||
};
|
||||
}
|
||||
@@ -1803,6 +1803,8 @@ self: super: with self; {
|
||||
|
||||
beetcamp = callPackage ../development/python-modules/beetcamp { };
|
||||
|
||||
beewi-smartclim = callPackage ../development/python-modules/beewi-smartclim { };
|
||||
|
||||
before-after = callPackage ../development/python-modules/before-after { };
|
||||
|
||||
behave = callPackage ../development/python-modules/behave { };
|
||||
|
||||
Reference in New Issue
Block a user