Merge pull request #281986 from fabaff/asyncclick-bump

python311Packages.asyncclick: 8.1.3.2 -> 8.1.7.1

authored by

Fabian Affolter and committed by
GitHub
cbfd8f68 99e3c003

+12 -9
+12 -9
pkgs/development/python-modules/asyncclick/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "asyncclick"; 13 - version = "8.1.3.2"; 14 - format = "setuptools"; 13 + version = "8.1.7.1"; 14 + pyproject = true; 15 15 16 - disabled = pythonOlder "3.6"; 16 + disabled = pythonOlder "3.9"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "python-trio"; 20 - repo = pname; 21 - rev = version; 22 - hash = "sha256-by1clF+WAfN/gjOg/F60O1tCZ3qAhWqiiJJY04iMzQ8="; 20 + repo = "asyncclick"; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-gx7s/HikvjsXalc0Z73JWMKc1SlhR+kohwk2sW4o19I="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ ··· 40 40 ]; 41 41 42 42 disabledTests = [ 43 - # RuntimeWarning: coroutine 'Context.invoke' was never awaited 44 - "test_context_invoke_type" 43 + # AttributeError: 'Context' object has no attribute '_ctx_mgr' 44 + "test_context_pushing" 45 45 ]; 46 46 47 - pythonImportsCheck = [ "asyncclick" ]; 47 + pythonImportsCheck = [ 48 + "asyncclick" 49 + ]; 48 50 49 51 meta = with lib; { 50 52 description = "Python composable command line utility"; 51 53 homepage = "https://github.com/python-trio/asyncclick"; 54 + changelog = "https://github.com/python-trio/asyncclick/blob/${version}/CHANGES.rst"; 52 55 license = with licenses; [ bsd3 ]; 53 56 maintainers = with maintainers; [ fab ]; 54 57 };