Unverified Commit 2310b083 authored by Maciej Krüger's avatar Maciej Krüger Committed by GitHub
Browse files

Merge pull request #324076 from mkg20001/up-ansible

Upgrade ansible and ansible-core
parents 0a4ab066 323a0d08
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -30,11 +30,12 @@

buildPythonPackage rec {
  pname = "ansible-core";
  version = "2.16.5";
  version = "2.17.1";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-zdKbDsPyDDVlc1Wi9qnB0M8RMdqZzJpKNAGAGwqzbW0=";
    pname = "ansible_core";
    inherit version;
    hash = "sha256-RkSdcbvRfDzoX+N5ch2I0zP9I2N7XDeY6D+uX6ON7wA=";
  };

  # ansible_connection is already wrapped, so don't pass it through
+10 −2
Original line number Diff line number Diff line
@@ -17265,12 +17265,20 @@ with pkgs;
  autoadb = callPackage ../misc/autoadb { };
  ansible = ansible_2_16;
  ansible_2_16 = python3Packages.toPythonApplication python3Packages.ansible-core;
  ansible = ansible_2_17;
  ansible_2_17 = python3Packages.toPythonApplication python3Packages.ansible-core;
  ansible_2_16 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
    version = "2.16.8";
    src = oldAttrs.src.override {
      inherit version;
      hash = "sha256-WeSqQO1azbTvm789BYkY//k/ZqFJNz2BWciilgRBC9o=";
    };
  }));
  ansible_2_15 = python3Packages.toPythonApplication (python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
    version = "2.15.9";
    src = oldAttrs.src.override {
      inherit version;
      pname = "ansible-core";
      hash = "sha256-JfmxtaWvPAmGvTko7QhurduGdSf7XIOv7xoDz60080U=";
    };
  }));