Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
aiohttp,
# optional-dependencies
aiomcache,
cryptography,
pynacl,
redis,
}:
buildPythonPackage rec {
pname = "aiohttp-session";
version = "2.12.1";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiohttp-session";
tag = "v${version}";
hash = "sha256-mGWtHo/+jdCmv3TmUUv42hWSiLzPiP5ytB25pVyvZig=";
};
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 ];
};
}