summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-01-09 12:02:56 -0800
committerJon <jonringer@users.noreply.github.com>2020-01-22 01:12:28 -0800
commit3444d76c1b312b40f59b5f472b9be3e379e91512 (patch)
tree37bbab8afb857e132c486b1f363e574a018723b1 /pkgs/tools
parent99eb9231d4d97c561cca7a5ca7617531eac6c92d (diff)
downloadnixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar.gz
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar.bz2
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar.lz
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar.xz
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.tar.zst
nixpkgs-3444d76c1b312b40f59b5f472b9be3e379e91512.zip
ansible_2_*: overridePythonAttrs -> overrideAttrs
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/admin/ansible/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/admin/ansible/default.nix b/pkgs/tools/admin/ansible/default.nix
index 197543945c2..191f73ce58c 100644
--- a/pkgs/tools/admin/ansible/default.nix
+++ b/pkgs/tools/admin/ansible/default.nix
@@ -15,7 +15,7 @@ rec {
     };
   }));
 
-  ansible_2_7 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
+  ansible_2_7 = with python3Packages; toPythonApplication (ansible.overrideAttrs(old: rec {
     pname = "ansible";
     version = "2.7.15";
 
@@ -25,7 +25,7 @@ rec {
     };
   }));
 
-  ansible_2_6 = with python3Packages; toPythonApplication (ansible.overridePythonAttrs(old: rec {
+  ansible_2_6 = with python3Packages; toPythonApplication (ansible.overrideAttrs(old: rec {
     pname = "ansible";
     version = "2.6.20";