python3Packages.habanero: add missing dep, tqdm

This commit is contained in:
Jonathan Ringer 2021-04-20 15:01:08 -07:00 committed by Jonathan Ringer
parent e095b69930
commit 43d3569e0f

View file

@ -1,5 +1,5 @@
{ buildPythonPackage, lib, fetchFromGitHub
, requests
, requests, tqdm
, nose, vcrpy
}:
@ -15,7 +15,7 @@ buildPythonPackage rec {
sha256 = "1d8yj9xz5qabcj57rpjzvg0jcscvzrpb0739mll29nijbsaimfr1";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [ requests tqdm ];
checkInputs = [ nose vcrpy ];
checkPhase = "make test";