summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ansible/collections.nix
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
committerRobin Gloster <mail@glob.in>2021-05-24 09:55:24 -0500
commit4bc5fbef9d159e143fb7e2c3231932e6e76f667c (patch)
treee2198f5c552e0667d838b8ec764ddb3a4d8f6dec /pkgs/development/python-modules/ansible/collections.nix
parentjq: fix build with structured-attrs on darwin (diff)
parentMerge pull request #123802 from superherointj/package-virtmanager-bugfix (diff)
downloadnixpkgs-origin/structured-attrs.tar.gz
Merge remote-tracking branch 'upstream/master' into structured-attrsorigin/structured-attrs
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 000000000000..9547b9a09187
--- /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 = "http://www.ansible.com";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ hexa ];
+ };
+}