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

python311Packages.ansible-compat: 3.0.1 -> 4.0.2
This commit is contained in:
Fabian Affolter 2023-05-13 16:33:30 +02:00 committed by GitHub
commit 662ac5b502
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,16 +8,19 @@
, pyyaml
, setuptools-scm
, subprocess-tee
, pythonOlder
}:
buildPythonPackage rec {
pname = "ansible-compat";
version = "3.0.1";
version = "4.0.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-19xeS3+t6bc3XFaKJEdbe+gQJMrCogyu8yYO8LUSh7Q=";
hash = "sha256-JbDcWro8Q+DP3JFATlcErphX5mTCEPf4SlVm4A111/M=";
};
nativeBuildInputs = [
@ -55,11 +58,14 @@ buildPythonPackage rec {
"test_runtime"
];
pythonImportsCheck = [ "ansible_compat" ];
pythonImportsCheck = [
"ansible_compat"
];
meta = with lib; {
description = "A python package containing functions that help interacting with various versions of Ansible";
description = "Function collection that help interacting with various versions of Ansible";
homepage = "https://github.com/ansible/ansible-compat";
changelog = "https://github.com/ansible/ansible-compat/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};