mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 06:23:36 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
48 lines
891 B
Nix
48 lines
891 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mock
|
|
, smbus-cffi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bme680";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pimoroni";
|
|
repo = "bme680-python";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gmdRxMJ0DoCyNcb/bYp746PBi4HktHAAYOcSQJ0Uheg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
smbus-cffi
|
|
];
|
|
|
|
preBuild = ''
|
|
cd library
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace library/setup.cfg \
|
|
--replace "smbus" "smbus-cffi"
|
|
'';
|
|
|
|
pythonImportsCheck = [ "bme680" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for driving the Pimoroni BME680 Breakout";
|
|
homepage = "https://github.com/pimoroni/bme680-python";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
};
|
|
}
|