Skip to content

Commit

Permalink
Merge pull request #126322 from fabaff/bump-bme680
Browse files Browse the repository at this point in the history
python3Packages.bme680: 1.0.5 -> 1.1.1
  • Loading branch information
SuperSandro2000 authored Jun 10, 2021
2 parents 7fe12b3 + 318689f commit c58707d
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions pkgs/development/python-modules/bme680/default.nix
Original file line number Diff line number Diff line change
@@ -1,30 +1,39 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, smbus-cffi
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "bme680";
version = "1.0.5";
version = "1.1.1";

src = fetchFromGitHub {
owner = "pimoroni";
repo = "bme680-python";
rev = "v${version}";
sha256 = "sha256-oIXh1JnGTI/Cj4MQFpWq+sWR2X+ioCsK0Q+T7wPITCQ=";
sha256 = "sha256-gmdRxMJ0DoCyNcb/bYp746PBi4HktHAAYOcSQJ0Uheg=";
};

propagatedBuildInputs = [ smbus-cffi ];
propagatedBuildInputs = [
smbus-cffi
];

preBuild = ''
cd library
'';
checkInputs = [ pytestCheckHook ];

# next release will have tests, but not the current one
doCheck = false;
checkInputs = [
mock
pytestCheckHook
];

postPatch = ''
substituteInPlace library/setup.cfg \
--replace "smbus" "smbus-cffi"
'';

pythonImportsCheck = [ "bme680" ];

Expand Down

0 comments on commit c58707d

Please sign in to comment.