about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiohttp-session/default.nix
blob: 31acba3ebd529c58664b39f29ebd9d973df5d58a (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
{ lib
, buildPythonPackage
, fetchFromGitHub

# build-system
, setuptools

# dependencies
, aiohttp

# optional-dependencies
, aiomcache
, cryptography
, pynacl
, redis
}:

buildPythonPackage rec {
  pname = "aiohttp-session";
  version = "2.12.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "aio-libs";
    repo = "aiohttp-session";
    rev = "v${version}";
    hash = "sha256-7MNah4OIQnoxLoZkLOdeu5uCwSyPMhc6Wsht8dFconc=";
  };

  build-system = [
    setuptools
  ];

  dependencies = [
    aiohttp
  ];

  optional-dependencies = {
    aioredis = [ redis ];
    aiomcache = [ aiomcache ];
    pycrypto = [ cryptography ];
    secure = [ cryptography ];
    pynacl = [ pynacl ];
  };

  doCheck = false; # runs redis in docker

  pythonImportsCheck = [
    "aiohttp_session"
  ];

  meta = with lib; {
    description = "Web sessions for aiohttp.web";
    homepage = "https://github.com/aio-libs/aiohttp-session";
    changelog = "https://github.com/aio-libs/aiohttp-session/blob/${src.rev}/CHANGES.txt";
    license = licenses.asl20;
    maintainers = with maintainers; [ hexa ];
  };
}