2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
|
|
|
|
# build-system
|
|
|
|
setuptools,
|
|
|
|
|
|
|
|
# dependencies
|
|
|
|
aiohttp,
|
|
|
|
|
|
|
|
# optional-dependencies
|
|
|
|
aiomcache,
|
|
|
|
cryptography,
|
|
|
|
pynacl,
|
|
|
|
redis,
|
2024-05-15 15:35:15 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
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=";
|
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
build-system = [ setuptools ];
|
2024-05-15 15:35:15 +00:00
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
dependencies = [ aiohttp ];
|
2024-05-15 15:35:15 +00:00
|
|
|
|
|
|
|
optional-dependencies = {
|
|
|
|
aioredis = [ redis ];
|
|
|
|
aiomcache = [ aiomcache ];
|
|
|
|
pycrypto = [ cryptography ];
|
|
|
|
secure = [ cryptography ];
|
|
|
|
pynacl = [ pynacl ];
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # runs redis in docker
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "aiohttp_session" ];
|
2024-05-15 15:35:15 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|