summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorRobert Schütz <rschuetz17@gmail.com>2019-03-01 21:08:54 +0100
committerGitHub <noreply@github.com>2019-03-01 21:08:54 +0100
commitee2d7e432fa9d6b092b010f3d76d3754b2b5b386 (patch)
treefcff82f580c7a4fae14b24b37f2cb1ec25475465 /pkgs/development/tools
parenteef63417d46c2b093ecce0bf07411a2ae0bbbb1e (diff)
parentabb5840d271857a475a597edcd5ee06414ffa246 (diff)
Merge pull request #56323 from costrouc/python-ansible-refactor
Move ansible to python-modules and use toPythonApplication + ansible related packages
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/ansible-lint/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/development/tools/ansible-lint/default.nix b/pkgs/development/tools/ansible-lint/default.nix
deleted file mode 100644
index 12eee5f808625..0000000000000
--- a/pkgs/development/tools/ansible-lint/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ stdenv, fetchFromGitHub, pythonPackages, ansible }:
-
-pythonPackages.buildPythonPackage rec {
-  pname = "ansible-lint";
-  version = "3.5.1";
-
-  src = fetchFromGitHub {
-    owner = "willthames";
-    repo = "ansible-lint";
-    rev = "v${version}";
-    sha256 = "09qixiaqhm6dbl74s1rwxbsg31nr6jjsvr4fxfnxl9ccbxcrpzn2";
-  };
-
-  propagatedBuildInputs = with pythonPackages; [ pyyaml six ] ++ [ ansible ];
-
-  checkInputs = [ pythonPackages.nose ];
-
-  postPatch = ''
-    patchShebangs bin/ansible-lint
-  '';
-
-   preBuild = ''
-     export HOME="$TMP"
-   '';
-
-  checkPhase = ''
-    nosetests test
-  '';
-
-  meta = {
-    homepage = "https://github.com/willthames/ansible-lint";
-    description = "Best practices checker for Ansible";
-    license = stdenv.lib.licenses.mit;
-    maintainers = [ stdenv.lib.maintainers.sengaya ];
-  };
-}