Merge pull request #231338 from r-ryantm/auto-update/python311Packages.ansible-compat

python311Packages.ansible-compat: 3.0.1 -> 4.0.2

authored by

Fabian Affolter and committed by
GitHub
662ac5b5 4fe933eb

+10 -4
+10 -4
pkgs/development/python-modules/ansible-compat/default.nix
··· 8 8 , pyyaml 9 9 , setuptools-scm 10 10 , subprocess-tee 11 + , pythonOlder 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "ansible-compat"; 15 - version = "3.0.1"; 16 + version = "4.0.2"; 16 17 format = "pyproject"; 17 18 19 + disabled = pythonOlder "3.7"; 20 + 18 21 src = fetchPypi { 19 22 inherit pname version; 20 - hash = "sha256-19xeS3+t6bc3XFaKJEdbe+gQJMrCogyu8yYO8LUSh7Q="; 23 + hash = "sha256-JbDcWro8Q+DP3JFATlcErphX5mTCEPf4SlVm4A111/M="; 21 24 }; 22 25 23 26 nativeBuildInputs = [ ··· 55 58 "test_runtime" 56 59 ]; 57 60 58 - pythonImportsCheck = [ "ansible_compat" ]; 61 + pythonImportsCheck = [ 62 + "ansible_compat" 63 + ]; 59 64 60 65 meta = with lib; { 61 - description = "A python package containing functions that help interacting with various versions of Ansible"; 66 + description = "Function collection that help interacting with various versions of Ansible"; 62 67 homepage = "https://github.com/ansible/ansible-compat"; 68 + changelog = "https://github.com/ansible/ansible-compat/releases/tag/v${version}"; 63 69 license = licenses.mit; 64 70 maintainers = with maintainers; [ ]; 65 71 };