about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-01-05 22:42:48 +0100
committerMichael Weiss <dev.primeos@gmail.com>2019-01-05 22:56:13 +0100
commit46dd27e02594bf868922f16d5aba8cbb661382b9 (patch)
tree32e14fd42b3b94cf68e9f690fc9a5a3c2e34f7eb /pkgs/top-level
parent35bee29824bba254f84fa6ccfcfae8eec940e47c (diff)
downloadnixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar.gz
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar.bz2
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar.lz
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar.xz
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.tar.zst
nixlib-46dd27e02594bf868922f16d5aba8cbb661382b9.zip
pythonPackages.gcutil: Deprecate the package
The package doesn't exist anymore (even the deprecation notice is gone
[0]) and the build is currently broken:
Collecting google-apputils==0.4.1 (from gcutil==1.16.1)
  Could not find a version that satisfies the requirement
google-apputils==0.4.1 (from gcutil==1.16.1) (from versions: )
No matching distribution found for google-apputils==0.4.1 (from
gcutil==1.16.1)

[0]: https://download.huihoo.com/google/gdgdevkit/DVD1/developers.google.com/compute/docs/gcutil.1.html
> "Warning: gcutil is deprecated. We encourage you to transition to
> using gcloud compute ."
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 665c0a59f7cd..697ebc3b5084 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -1732,7 +1732,11 @@ in {
 
   gateone = callPackage ../development/python-modules/gateone { };
 
-  gcutil = callPackage ../development/python-modules/gcutil { };
+  # TODO: Remove after 19.03 is branched off:
+  gcutil = throw ''
+    pythonPackages.gcutil is deprecated and can be replaced with "gcloud
+    compute" from the package google-cloud-sdk.
+  '';
 
   GeoIP = callPackage ../development/python-modules/GeoIP { };