From 3581eb92df53449f86128523949f4c6cf84307a0 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 May 2022 23:35:51 +0200 Subject: [PATCH 1/2] python3Packages.ansible: 5.7.0 -> 5.7.1 https://groups.google.com/g/ansible-announce/c/GmOhXTtmj_w https://github.com/ansible-community/ansible-build-data/blob/5.7.1/5/CHANGELOG-v5.rst --- pkgs/development/python-modules/ansible/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ansible/default.nix b/pkgs/development/python-modules/ansible/default.nix index 0e6f26700bc..5754d09b901 100644 --- a/pkgs/development/python-modules/ansible/default.nix +++ b/pkgs/development/python-modules/ansible/default.nix @@ -20,7 +20,7 @@ let pname = "ansible"; - version = "5.7.0"; + version = "5.7.1"; in buildPythonPackage { inherit pname version; @@ -30,7 +30,7 @@ buildPythonPackage { src = fetchPypi { inherit pname version; - sha256 = "sha256-6AwOdN4XdK2ufAIzskf/crj72LXxBwd9tdC38DcNa4Y="; + sha256 = "sha256-kKCaNFENGU1jVWiVoiWonkqLdIua4hW1XlF6N94GOmE="; }; postPatch = '' From b4049c2bc99ccddc81df2afce011d49f10a0c8f5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 May 2022 23:49:59 +0200 Subject: [PATCH 2/2] python3Packages.ansible: add meta.changelog This is annoying to find so add it here and now. --- pkgs/development/python-modules/ansible/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/ansible/default.nix b/pkgs/development/python-modules/ansible/default.nix index 5754d09b901..2e44fa4e243 100644 --- a/pkgs/development/python-modules/ansible/default.nix +++ b/pkgs/development/python-modules/ansible/default.nix @@ -78,6 +78,7 @@ buildPythonPackage { meta = with lib; { description = "Radically simple IT automation"; homepage = "https://www.ansible.com"; + changelog = "https://github.com/ansible-community/ansible-build-data/blob/${version}/${lib.versions.major version}/CHANGELOG-v${lib.versions.major version}.rst"; license = licenses.gpl3Plus; maintainers = with maintainers; [ hexa ]; };