mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
python3Packages.pyfxa: fix tests
This commit is contained in:
parent
cf5f079991
commit
5ca8364332
@ -1,6 +1,6 @@
|
||||
{ lib, buildPythonPackage, fetchPypi
|
||||
, requests, cryptography, pybrowserid, hawkauthlib, six
|
||||
, grequests, mock, responses, unittest2 }:
|
||||
, grequests, mock, responses, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "PyFxA";
|
||||
@ -21,9 +21,13 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
grequests mock responses unittest2
|
||||
grequests mock responses pytest
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
pytest
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Firefox Accounts client library for Python";
|
||||
homepage = https://github.com/mozilla/PyFxA;
|
||||
|
Loading…
Reference in New Issue
Block a user