summary refs log tree commit diff
path: root/pkgs/development/python-modules/django-sesame/default.nix
blob: b0671d789510c2222d9e2e7caf88db178671faaa (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
{ lib
, buildPythonPackage
, django
, fetchFromGitHub
, poetry-core
, python
, pythonOlder
, ua-parser
}:

buildPythonPackage rec {
  pname = "django-sesame";
  version = "3.2.1";
  format = "pyproject";

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "aaugustin";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-R7ySuop7E1lkxtRSVNFfzyb3Ba1mW0o6PDiTxTztK/Y=";
  };

  nativeBuildInputs = [
    poetry-core
  ];

  nativeCheckInputs = [
    django
    ua-parser
  ];

  pythonImportsCheck = [
    "sesame"
  ];

  checkPhase = ''
    runHook preCheck

    ${python.interpreter} -m django test --settings=tests.settings

    runHook postCheck
  '';

  meta = with lib; {
    description = "URLs with authentication tokens for automatic login";
    homepage = "https://github.com/aaugustin/django-sesame";
    license = licenses.bsd3;
    maintainers = with maintainers; [ elohmeier ];
  };
}