python3Packages.pyfxa: fix deps and tests

This commit is contained in:
Jonathan Ringer 2020-08-15 23:13:50 -07:00 committed by Jon
parent 5f212d693f
commit a4672f78d5

View file

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, requests, cryptography, pybrowserid, hawkauthlib, six
, grequests, mock, responses, pytest }:
, grequests, mock, responses, pytest, pyjwt }:
buildPythonPackage rec {
pname = "PyFxA";
@ -17,15 +17,16 @@ buildPythonPackage rec {
'';
propagatedBuildInputs = [
requests cryptography pybrowserid hawkauthlib six
pyjwt requests cryptography pybrowserid hawkauthlib six
];
checkInputs = [
grequests mock responses pytest
];
# test_oath is mostly network calls
checkPhase = ''
pytest
pytest --ignore=fxa/tests/test_oauth.py
'';
meta = with lib; {