Unverified Commit c6a38124 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.ansible: 12.1.0 -> 12.2.0 (#459345)

parents 0213bd94 74f658bd
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
  fetchFromGitHub,
  python,
  pythonOlder,
  installShellFiles,
@@ -34,15 +34,16 @@ buildPythonPackage rec {
  pname = "ansible-core";
  # IMPORTANT: When bumping the minor version (2.XX.0 - the XX), please update pinned package in pkgs/top-level/all-packages.nix
  # There are pinned packages called ansible_2_XX, create a new one with the previous minor version and then update the version here
  version = "2.19.3";
  version = "2.19.4";
  pyproject = true;

  disabled = pythonOlder "3.12";

  src = fetchPypi {
    pname = "ansible_core";
    inherit version;
    hash = "sha256-JDppZpoAe+B5Q2C8RHf3DgEozgCR3Dr0xcuBxqRm9XM=";
  src = fetchFromGitHub {
    owner = "ansible";
    repo = "ansible";
    tag = "v${version}";
    hash = "sha256-TjafUlPKuxpXrfREK65D88SoGThGBzpbfCHr0ZkviI0=";
  };

  # ansible_connection is already wrapped, so don't pass it through
+2 −5
Original line number Diff line number Diff line
{
  lib,
  pythonOlder,
  buildPythonPackage,
  fetchPypi,
  setuptools,
@@ -25,17 +24,15 @@

let
  pname = "ansible";
  version = "12.1.0";
  version = "12.2.0";
in
buildPythonPackage {
  inherit pname version;
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-It6hk41DP6UVswAc+tZcswjvl8mA8VIBdNBU3TjzLIM=";
    hash = "sha256-BWPf0z69KMr2zNx6bSKn/a+9nJxC/vyuUXlhalOjUhE=";
  };

  # we make ansible-core depend on ansible, not the other way around,
+6 −3
Original line number Diff line number Diff line
@@ -6053,7 +6053,8 @@ with pkgs;
  ansible_2_18 = python3Packages.toPythonApplication (
    python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
      version = "2.18.8";
      src = oldAttrs.src.override {
      src = fetchPypi {
        pname = "ansible_core";
        inherit version;
        hash = "sha256-sHZiFalqR845kz0n4emWyivrVM8bOQfHQtNckTsfeM0=";
      };
@@ -6062,7 +6063,8 @@ with pkgs;
  ansible_2_17 = python3Packages.toPythonApplication (
    python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
      version = "2.17.8";
      src = oldAttrs.src.override {
      src = fetchPypi {
        pname = "ansible_core";
        inherit version;
        hash = "sha256-Ob6KeYaix9NgabDZciC8L2eDxl/qfG1+Di0A0ayK+Hc=";
      };
@@ -6071,7 +6073,8 @@ with pkgs;
  ansible_2_16 = python3Packages.toPythonApplication (
    python3Packages.ansible-core.overridePythonAttrs (oldAttrs: rec {
      version = "2.16.14";
      src = oldAttrs.src.override {
      src = fetchPypi {
        pname = "ansible_core";
        inherit version;
        hash = "sha256-gCef/9mGhrrfqjLh7HhdmKbfGy/B5Al97AWXZA10ZBU=";
      };