lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.ansi: add setuptools to nativeBuildInputs

authored by

Martin Weinelt and committed by
Sandro Jäckel
cd9776aa e07eca17

+5
+5
pkgs/development/python-modules/ansi/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , pytestCheckHook 5 6 }: 6 7 ··· 15 16 rev = "${pname}-${version}"; 16 17 hash = "sha256-2gu2Dba3LOjMhbCCZrBqzlOor5KqDYThhe8OP8J3O2M="; 17 18 }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 18 23 19 24 checkInputs = [ 20 25 pytestCheckHook