summary refs log tree commit diff
path: root/pkgs/development/python-modules/social-auth-core/default.nix
blob: 667c4ec4245a9e686cf5d5fc1509dd1dc7f2002e (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, oauthlib
, requests-oauthlib
, pyjwt
, cryptography
, defusedxml
, python3-openid
, python-jose
, python3-saml
, pytestCheckHook
, httpretty
}:

buildPythonPackage rec {
  pname = "social-auth-core";
  version = "4.2.0";

  src = fetchFromGitHub {
    owner = "python-social-auth";
    repo = "social-core";
    rev = version;
    sha256 = "sha256-kaL6sfAyQlzxszCEbhW7sns/mcOv0U+QgplmUd6oegQ=";
  };

  # Disable checking the code coverage
  prePatch = ''
    substituteInPlace social_core/tests/requirements.txt \
      --replace "coverage>=3.6" "" \
      --replace "pytest-cov>=2.7.1" ""

    substituteInPlace tox.ini \
      --replace "{posargs:-v --cov=social_core}" "{posargs:-v}"
  '';

  propagatedBuildInputs = [
    requests
    oauthlib
    requests-oauthlib
    pyjwt
    cryptography
    defusedxml
    python3-openid
    python-jose
    python3-saml
  ];

  checkInputs = [
    pytestCheckHook
    httpretty
  ];

  pythonImportsCheck = [ "social_core" ];

  meta = with lib; {
    homepage = "https://github.com/python-social-auth/social-core";
    description = "Python Social Auth - Core";
    license = licenses.bsd3;
    maintainers = with maintainers; [ n0emis ];
  };
}