diff options
| author | nyanloutre <paul@nyanlout.re> | 2020-09-12 23:45:22 +0200 |
|---|---|---|
| committer | nyanloutre <paul@nyanlout.re> | 2020-09-12 23:52:13 +0200 |
| commit | 9225192bf67c72ec69b7d489b0e3d368a778ee4b (patch) | |
| tree | e24b9d9312b4f2757fa1b3d812148a90e8b49af7 /pkgs/development/python-modules/python-gitlab | |
| parent | 61525137fd1002f6f2a5eb0ea27d480713362cd5 (diff) | |
pythonPackage.python-gitlab: add missing tests requirements
Diffstat (limited to 'pkgs/development/python-modules/python-gitlab')
| -rw-r--r-- | pkgs/development/python-modules/python-gitlab/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix index b543b435fc65..470095eae8d2 100644 --- a/pkgs/development/python-modules/python-gitlab/default.nix +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -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"; |
