pythonPackage.python-gitlab: add missing tests requirements

(cherry picked from commit 9225192bf6)
This commit is contained in:
nyanloutre
2020-09-12 23:45:22 +02:00
committed by Jon
parent ded557901c
commit a40c69ed47

View File

@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, requests, mock, httmock, pythonOlder }:
{ stdenv, buildPythonPackage, fetchPypi, requests, mock, httmock, pythonOlder, pytest, responses }:
buildPythonPackage rec {
pname = "python-gitlab";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ requests ];
checkInputs = [ mock httmock ];
checkInputs = [ mock httmock pytest responses ];
disabled = pythonOlder "3.6";