Merge pull request #129947 from fabaff/bump-aiojobs

authored by

Sandro and committed by
GitHub
5425ee81 eed20f01

+9 -11
+9 -11
pkgs/development/python-modules/aiojobs/default.nix
··· 1 - { buildPythonPackage 1 + { lib 2 + , buildPythonPackage 2 3 , fetchPypi 3 - , isPy27 4 + , pythonOlder 4 5 , aiohttp 5 - , pytest 6 + , pytestCheckHook 6 7 , pytest-aiohttp 7 8 , pygments 8 - , lib 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "aiojobs"; 13 - version = "0.2.2"; 13 + version = "0.3.0"; 14 14 format = "flit"; 15 - disabled = isPy27; 15 + disabled = pythonOlder "3.5"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - sha256 = "01a0msjh4w58fd7jplmblh0hwgpzwjs5xkgqz3d0p5yv3cykwjwf"; 19 + sha256 = "sha256-9mMdQtxDCPfYg6u9cNTpdvP8w1o7oejq5dSvSUCh4MM="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 28 28 ]; 29 29 30 30 checkInputs = [ 31 - pytest 31 + pytestCheckHook 32 32 pytest-aiohttp 33 33 ]; 34 34 35 - checkPhase = '' 36 - pytest tests 37 - ''; 35 + pythonImportsCheck = [ "aiojobs" ]; 38 36 39 37 meta = with lib; { 40 38 homepage = "https://github.com/aio-libs/aiojobs";