Files
nixpkgs/pkgs/development/python-modules/aiohttp-session/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01: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 = {
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 = lib.licenses.asl20;
maintainers = with lib.maintainers; [ hexa ];
};
}