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