python3Packages.ansi: add setuptools to nativeBuildInputs

This commit is contained in:
Martin Weinelt
2022-09-18 03:11:06 +02:00
committed by Sandro Jäckel
parent e07eca17af
commit cd9776aa25

View File

@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
}:
@@ -16,6 +17,10 @@ buildPythonPackage rec {
hash = "sha256-2gu2Dba3LOjMhbCCZrBqzlOor5KqDYThhe8OP8J3O2M=";
};
nativeBuildInputs = [
setuptools
];
checkInputs = [
pytestCheckHook
];