Loading pkgs/development/python-modules/aiohttp-session/default.nix 0 → 100644 +59 −0 Original line number Diff line number Diff line { 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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -261,6 +261,8 @@ self: super: with self; { aiohttp-retry = callPackage ../development/python-modules/aiohttp-retry { }; aiohttp-session = callPackage ../development/python-modules/aiohttp-session { }; aiohttp-socks = callPackage ../development/python-modules/aiohttp-socks { }; aiohttp-swagger = callPackage ../development/python-modules/aiohttp-swagger { }; Loading Loading
pkgs/development/python-modules/aiohttp-session/default.nix 0 → 100644 +59 −0 Original line number Diff line number Diff line { 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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -261,6 +261,8 @@ self: super: with self; { aiohttp-retry = callPackage ../development/python-modules/aiohttp-retry { }; aiohttp-session = callPackage ../development/python-modules/aiohttp-session { }; aiohttp-socks = callPackage ../development/python-modules/aiohttp-socks { }; aiohttp-swagger = callPackage ../development/python-modules/aiohttp-swagger { }; Loading