aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pyfxa/default.nix
blob: 0f964bfc9f9765c6eb120eb1ce39225f755fc3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, buildPythonPackage, fetchPypi
, requests, cryptography, pybrowserid, hawkauthlib, six
, grequests, mock, responses, pytest }:

buildPythonPackage rec {
  pname = "PyFxA";
  version = "0.7.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f47f4285629fa6c033c79adc3fb90926c0818a42cfddb04d32818547362f1627";
  };

  postPatch = ''
    # Requires network access
    rm fxa/tests/test_core.py
  '';

  propagatedBuildInputs = [
    requests cryptography pybrowserid hawkauthlib six
  ];

  checkInputs = [
    grequests mock responses pytest
  ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "Firefox Accounts client library for Python";
    homepage = "https://github.com/mozilla/PyFxA";
    license = licenses.mpl20;
  };
}