python312Packages.ansible-core: 2.17.5 -> 2.17.6

Diff: https://github.com/ansible/ansible/compare/v2.17.5...v2.17.6
Changelog: https://github.com/ansible/ansible/releases/tag/v2.17.6
This commit is contained in:
natsukium 2024-11-08 01:04:06 +09:00
parent 132b5f592d
commit 70266f1d0b
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -5,6 +5,7 @@
pythonOlder,
installShellFiles,
docutils,
setuptools,
ansible,
cryptography,
importlib-resources,
@ -30,12 +31,13 @@
buildPythonPackage rec {
pname = "ansible-core";
version = "2.17.5";
version = "2.17.6";
pyproject = true;
src = fetchPypi {
pname = "ansible_core";
inherit version;
hash = "sha256-rn9R/RPcnVfJvNQ+8j+cJVyo8Y9LXAARpPm3JNksWo4=";
hash = "sha256-PlOXC3zr/irbObcRweL4u/y+2sgo2lHcA1ehkHBjjpU=";
};
# ansible_connection is already wrapped, so don't pass it through
@ -53,7 +55,9 @@ buildPythonPackage rec {
docutils
];
propagatedBuildInputs =
build-system = [ setuptools ];
dependencies =
[
# depend on ansible instead of the other way around
ansible