summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-01-27 09:54:03 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2017-01-27 10:10:29 +0100
commit377b05ae38ef6c81d83e0c01446a69ea8fe287d2 (patch)
tree40d1cf194840daa0f1697fa6b3eaee3babcd6b07
parented67a10fcdd74c87dec8c82b08423ad4f5f636d0 (diff)
downloadnixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar.gz
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar.bz2
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar.lz
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar.xz
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.tar.zst
nixpkgs-377b05ae38ef6c81d83e0c01446a69ea8fe287d2.zip
pythonPackages.ansible: remove 1.9
-rw-r--r--pkgs/top-level/python-packages.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 8d7bbfece74..532c681d4da 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -923,43 +923,6 @@ in {
     };
   };
 
-  ansible = buildPythonPackage rec {
-    version = "1.9.6";
-    name = "ansible-${version}";
-    disabled = isPy3k;
-
-    src = pkgs.fetchurl {
-      url = "https://releases.ansible.com/ansible/${name}.tar.gz";
-      sha256 = "0pgfh5z4w44sjgd77q6k769a5ipigjlm28zbpf2jhvz7n60kfxsh";
-    };
-
-    prePatch = ''
-      sed -i "s,/usr/,$out," lib/ansible/constants.py
-    '';
-
-    doCheck = false;
-    dontStrip = true;
-    dontPatchELF = true;
-    dontPatchShebangs = true;
-    windowsSupport = true;
-
-    propagatedBuildInputs = with self; [
-      pycrypto paramiko jinja2 pyyaml httplib2 boto six
-      netaddr dns
-    ] ++ optional windowsSupport pywinrm;
-
-    meta = {
-      homepage = "http://www.ansible.com";
-      description = "A simple automation tool";
-      license = with licenses; [ gpl3] ;
-      maintainers = with maintainers; [
-        jgeerds
-        joamaki
-      ];
-      platforms = with platforms; linux ++ darwin;
-    };
-  };
-
   ansible2 = buildPythonPackage rec {
     version = "2.2.0.0";
     name = "ansible-${version}";