python3.pkgs.bme680: init at 1.0.5

This commit is contained in:
Jörg Thalheim 2020-10-24 21:26:58 +02:00
parent d1dc6f61f9
commit 105dd1dfae
No known key found for this signature in database
GPG key ID: 003F2096411B5F92
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, smbus-cffi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "bme680";
version = "1.0.5";
src = fetchFromGitHub {
owner = "pimoroni";
repo = "bme680-python";
rev = "v${version}";
sha256 = "sha256-oIXh1JnGTI/Cj4MQFpWq+sWR2X+ioCsK0Q+T7wPITCQ=";
};
propagatedBuildInputs = [ smbus-cffi ];
preBuild = ''
cd library
'';
checkInputs = [ pytestCheckHook ];
# next release will have tests, but not the current one
doCheck = false;
pythonImportsCheck = [ "bme680" ];
meta = with lib; {
description = "Python library for driving the Pimoroni BME680 Breakout";
homepage = "https://github.com/pimoroni/bme680-python";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}

View file

@ -913,6 +913,8 @@ in {
bluepy = callPackage ../development/python-modules/bluepy { };
bme680 = callPackage ../development/python-modules/bme680 { };
bokeh = callPackage ../development/python-modules/bokeh { };
boltons = callPackage ../development/python-modules/boltons { };