python3Packages.smbus-cffi: Pass py into checkInputs

This commit is contained in:
Martin Weinelt 2023-01-02 21:44:46 +01:00
parent 9d7973e52f
commit 4244d1bd35

View file

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, cffi , cffi
, py
, pytestCheckHook , pytestCheckHook
, pyserial , pyserial
, fetchpatch , fetchpatch
@ -37,7 +38,7 @@ buildPythonPackage rec {
# requires hardware access # requires hardware access
pytestFlagsArray = [ "--ignore=test/test_smbus_integration.py" ]; pytestFlagsArray = [ "--ignore=test/test_smbus_integration.py" ];
checkInputs = [ pytestCheckHook pyserial ]; checkInputs = [ py pytestCheckHook pyserial ];
meta = with lib; { meta = with lib; {
description = "Python module for SMBus access through Linux I2C /dev interface"; description = "Python module for SMBus access through Linux I2C /dev interface";