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