3
0
Fork 0
forked from mirrors/nixpkgs

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
commit 79ff0a1127
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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