summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansible/collections.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-05-12 04:35:46 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-13 15:38:56 -0700
commitff2e731acee32963b1646a50fa01bfc4f7c2d503 (patch)
tree8d8959385b850b64f96bc35cb117f55298e96ef5 /pkgs/development/python-modules/ansible/collections.nix
parenta4eaed4fd67c77b3d35c36008406cbd6c0407e69 (diff)
downloadnixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar.gz
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar.bz2
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar.lz
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar.xz
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.tar.zst
nixpkgs-ff2e731acee32963b1646a50fa01bfc4f7c2d503.zip
python3Packages.ansible-collections: init at 3.4.0
Diffstat (limited to 'pkgs/development/python-modules/ansible/collections.nix')
-rw-r--r--pkgs/development/python-modules/ansible/collections.nix77
1 files changed, 77 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ansible/collections.nix b/pkgs/development/python-modules/ansible/collections.nix
new file mode 100644
index 00000000000..52355142e26
--- /dev/null
+++ b/pkgs/development/python-modules/ansible/collections.nix
@@ -0,0 +1,77 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, ansible-base
+, jsonschema
+, jxmlease
+, ncclient
+, netaddr
+, paramiko
+, pynetbox
+, scp
+, textfsm
+, ttp
+, xmltodict
+, withJunos ? false
+, withNetbox ? false
+}:
+
+buildPythonPackage rec {
+  pname = "ansible";
+  version = "3.4.0";
+  format = "setuptools";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "096rbgz730njk0pg8qnc27mmz110wqrw354ca9gasb7rqg0f4d6a";
+  };
+
+  postPatch = ''
+    # make ansible-base depend on ansible-collection, not the other way around
+    sed -i '/ansible-base/d' setup.py
+  '';
+
+  propagatedBuildInputs = lib.unique ([
+    # Support ansible collections by default, make all others optional
+    # ansible.netcommon
+    jxmlease
+    ncclient
+    netaddr
+    paramiko
+    xmltodict
+    # ansible.posix
+    # ansible.utils
+    jsonschema
+    textfsm
+    ttp
+    xmltodict
+    # ansible.windows
+
+    # lots of collections with dedicated requirements.txt and pyproject.toml files,
+    # add the dependencies for the collections you need conditionally and install
+    # ansible using overrides to enable the collections you need.
+  ] ++ lib.optionals (withJunos) [
+    # ansible_collections/junipernetworks/junos/requirements.txt
+    jxmlease
+    ncclient
+    paramiko
+    scp
+    xmltodict
+  ] ++ lib.optionals (withNetbox) [
+    # ansible_collections/netbox/netbox/pyproject.toml
+    pynetbox
+  ]);
+
+  # don't try and fail to strip 48000+ non strippable files, it takes >5 minutes!
+  dontStrip = true;
+
+  # difficult to test
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Radically simple IT automation";
+    homepage = "Radically simple IT automation";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ hexa ];
+  };
+}