python3Packages.variants: add six to check deps

This commit is contained in:
Martin Weinelt 2022-03-31 23:31:43 +02:00
parent 7739dfcece
commit 94fb150cac

View file

@ -4,6 +4,7 @@
, pytest-runner , pytest-runner
, setuptools-scm , setuptools-scm
, pytestCheckHook , pytestCheckHook
, six
, lib , lib
}: }:
@ -17,12 +18,12 @@ buildPythonPackage rec {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pytest-runner
setuptools-scm setuptools-scm
]; ];
checkInputs = [ checkInputs = [
pytestCheckHook pytestCheckHook
six
]; ];
meta = with lib; { meta = with lib; {