diff --git a/pkgs/development/python-modules/ansible-lint/default.nix b/pkgs/development/python-modules/ansible-lint/default.nix index 37538088b226..19fcb46e121f 100644 --- a/pkgs/development/python-modules/ansible-lint/default.nix +++ b/pkgs/development/python-modules/ansible-lint/default.nix @@ -6,25 +6,27 @@ , ansible-core , enrich , flaky +, jsonschema +, pythonOlder +, pytest +, pytest-xdist +, pytestCheckHook , pyyaml , rich , ruamel-yaml , wcmatch , yamllint -, pythonOlder -, pytest-xdist -, pytestCheckHook }: buildPythonPackage rec { pname = "ansible-lint"; - version = "6.0.2"; + version = "6.2.1"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-tTm8ItE+beDMLiV1jh0osrwBVhpBSuN87aNwi1oqee0="; + sha256 = "sha256-yg3u5YNcv6+buhgnWGiKiKC5xoUrMrFed+SwN2whvB8="; }; postPatch = '' @@ -41,6 +43,8 @@ buildPythonPackage rec { ansible-compat ansible-core enrich + jsonschema + pytest # yes, this is an actual runtime dependency pyyaml rich ruamel-yaml @@ -90,7 +94,7 @@ buildPythonPackage rec { makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible-core ]}" ]; meta = with lib; { - homepage = "https://github.com/ansible-community/ansible-lint"; + homepage = "https://github.com/ansible/ansible-lint"; description = "Best practices checker for Ansible"; license = licenses.mit; maintainers = with maintainers; [ sengaya SuperSandro2000 ];