567e8dfd8e
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>
79 lines
1.5 KiB
Nix
79 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
aiocontextvars,
|
|
aiohttp,
|
|
async-timeout,
|
|
buildPythonPackage,
|
|
colorlog,
|
|
croniter,
|
|
fastapi,
|
|
fetchPypi,
|
|
logging-journald,
|
|
poetry-core,
|
|
pytestCheckHook,
|
|
raven,
|
|
rich,
|
|
setproctitle,
|
|
uvloop,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiomisc";
|
|
version = "17.9.9";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-c9dlFc6XFahTbg6EEBb1OiKpFJ/zlzIp34UQJc8CXKY=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
colorlog
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [ logging-journald ];
|
|
|
|
nativeCheckInputs = [
|
|
aiocontextvars
|
|
async-timeout
|
|
fastapi
|
|
pytestCheckHook
|
|
setproctitle
|
|
]
|
|
++ lib.concatAttrValues 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 = {
|
|
description = "Miscellaneous utils for asyncio";
|
|
homepage = "https://github.com/aiokitchen/aiomisc";
|
|
changelog = "https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|