python3.pkgs.setupmeta: add missing dependencies

This commit is contained in:
Theodore Ni 2023-08-23 14:34:22 -07:00
parent 24fcb50419
commit 286e3eb1c5
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474

View File

@ -4,10 +4,12 @@
, git
, mock
, pep440
, pip
, pytestCheckHook
, pythonOlder
, setuptools-scm
, six
, wheel
}:
buildPythonPackage rec {
@ -30,12 +32,14 @@ buildPythonPackage rec {
nativeBuildInputs = [
setuptools-scm
wheel
];
nativeCheckInputs = [
git
mock
pep440
pip
pytestCheckHook
six
];