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