summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-21 20:38:45 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-04-22 17:11:20 +0200
commite7f0a2ce00224535556a203c396f9e02a66f571d (patch)
treeffc208e29e179d03d908546797bba1b89ee5181b
parent8db6b7615a91322f0ccea77cfdea89e395619fdb (diff)
downloadnixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar.gz
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar.bz2
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar.lz
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar.xz
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.tar.zst
nixlib-e7f0a2ce00224535556a203c396f9e02a66f571d.zip
pythonPackages.gandi-cli: init at 0.18
-rw-r--r--pkgs/top-level/python-packages.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index c59bec38d3b8..a180eb6cf02c 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -5698,6 +5698,25 @@ in modules // {
     };
   };
 
+  gandi-cli = buildPythonPackage rec {
+    name = "gandi-cli-${version}";
+    version = "0.18";
+    src = pkgs.fetchFromGitHub {
+      sha256 = "045gnz345nfbi1g7j3gcyzrxrx3hcidaxzr05cb49rcr8nmqh1s3";
+      rev = version;
+      repo = "gandi.cli";
+      owner = "Gandi";
+    };
+    propagatedBuildInputs = with self; [ click ipy pyyaml requests ];
+    doCheck = false;	# Tests try to contact the actual remote API
+    meta = {
+      homepage = http://cli.gandi.net/;
+      description = "Command-line interface to the public Gandi.net API";
+      license = licenses.gpl3Plus;
+      maintainers = with maintainers; [ nckx ];
+    };
+  };
+
   gateone = buildPythonPackage rec {
     name = "gateone-1.2-0d57c3";
     disabled = ! isPy27;