Merge pull request #97866 from nyanloutre/python_gitlab_fix

pythonPackage.python-gitlab: add missing tests requirements
This commit is contained in:
Martin Weinelt
2020-09-13 18:43:59 +02:00
committed by GitHub

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";