mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
82 lines
1.6 KiB
Nix
82 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
aiocontextvars,
|
|
aiohttp,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
colorlog,
|
|
croniter,
|
|
fastapi,
|
|
fetchPypi,
|
|
logging-journald,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
raven,
|
|
rich,
|
|
setproctitle,
|
|
typing-extensions,
|
|
uvloop,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiomisc";
|
|
version = "17.5.26";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-78N8SBzgUB0Lnbj79r3jfhx6ZwlsP9Eq7gTIPkZSPzM=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies =
|
|
[ colorlog ]
|
|
++ lib.optionals (pythonOlder "3.11") [ typing-extensions ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ logging-journald ];
|
|
|
|
nativeCheckInputs = [
|
|
aiocontextvars
|
|
async-timeout
|
|
fastapi
|
|
pytestCheckHook
|
|
setproctitle
|
|
] ++ lib.flatten (builtins.attrValues optional-dependencies);
|
|
|
|
optional-dependencies = {
|
|
aiohttp = [ aiohttp ];
|
|
#asgi = [ aiohttp-asgi ];
|
|
cron = [ croniter ];
|
|
#carbon = [ aiocarbon ];
|
|
raven = [
|
|
aiohttp
|
|
raven
|
|
];
|
|
rich = [ rich ];
|
|
uvloop = [ uvloop ];
|
|
};
|
|
|
|
pythonImportsCheck = [ "aiomisc" ];
|
|
|
|
# Upstream stopped tagging with 16.2
|
|
doCheck = false;
|
|
|
|
# disabledTestPaths = [
|
|
# # Dependencies are not available at the moment
|
|
# "tests/test_entrypoint.py"
|
|
# "tests/test_raven_service.py"
|
|
# ];
|
|
|
|
meta = with lib; {
|
|
description = "Miscellaneous utils for asyncio";
|
|
homepage = "https://github.com/aiokitchen/aiomisc";
|
|
changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|