nixpkgs/pkgs/development/python-modules/aiojobs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.7 KiB
Nix
Raw Normal View History

{ lib
, aiohttp
, async-timeout
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
2020-08-14 11:29:53 +00:00
, pytest-aiohttp
, pytestCheckHook
, pythonOlder
, setuptools
2020-08-14 11:29:53 +00:00
}:
buildPythonPackage rec {
pname = "aiojobs";
version = "1.2.1";
format = "pyproject";
2020-08-14 11:29:53 +00:00
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiojobs";
rev = "refs/tags/v${version}";
hash = "sha256-LwFXb/SHP6bbqPg1tqYwE03FKHf4Mv1PPOxnPdESH0I=";
2020-08-14 11:29:53 +00:00
};
patches = [
(fetchpatch {
url = "https://github.com/aio-libs/aiojobs/commit/1b88049841397b01f88aee7d92174ac5a15217c1.patch";
hash = "sha256-b38Ipa29T6bEVsPe04ZO3WCcs6+0fOQDCJM+w8K1bVY=";
})
];
postPatch = ''
substituteInPlace pytest.ini \
--replace "--cov=aiojobs/ --cov=tests/ --cov-report term" ""
'';
2020-08-14 11:29:53 +00:00
nativeBuildInputs = [
setuptools
2020-08-14 11:29:53 +00:00
];
propagatedBuildInputs = lib.optionals (pythonOlder "3.11") [
async-timeout
2020-08-14 11:29:53 +00:00
];
passthru.optional-dependencies = {
aiohttp = [
aiohttp
];
};
2023-08-01 07:01:21 +00:00
nativeCheckInputs = [
pytestCheckHook
2020-08-14 11:29:53 +00:00
pytest-aiohttp
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
2020-08-14 11:29:53 +00:00
pythonImportsCheck = [
"aiojobs"
];
2020-08-14 11:29:53 +00:00
disabledTests = [
# RuntimeWarning: coroutine 'Scheduler._wait_failed' was never awaited
"test_scheduler_must_be_created_within_running_loop"
];
__darwinAllowLocalNetworking = true;
2020-08-14 11:29:53 +00:00
meta = with lib; {
description = "Jobs scheduler for managing background task (asyncio)";
homepage = "https://github.com/aio-libs/aiojobs";
changelog = "https://github.com/aio-libs/aiojobs/blob/v${version}/CHANGES.rst";
2020-08-14 11:29:53 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ cmcdragonkai ];
};
}