summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorAndreas Rammhold <andreas@rammhold.de>2018-02-05 01:49:42 +0100
committerAndreas Rammhold <andreas@rammhold.de>2018-02-05 01:49:42 +0100
commitb51454eb54305a446fc8be82eea218d054dbc286 (patch)
treec4e5726d123ae61a4bb775d9b189b9ec095bcc99 /pkgs/top-level
parent4688dd0cf5909f74daac1777bda41acd1b2b5fe1 (diff)
downloadnixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar.gz
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar.bz2
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar.lz
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar.xz
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.tar.zst
nixlib-b51454eb54305a446fc8be82eea218d054dbc286.zip
pythonPackages.github-cli: removed since upstream declared project non-functional
also does not work on python3 even thought we provide it thereā€¦

Note on the upstream repo [1]:
> IMPORTANT: github-cli does not function anymore since API v2 has been
> replaced by API v3 A possible alternative for github-cli that addresses
> API v3 is Stephen Celis' [ghi](https://github.com/stephencelis/ghi)

[1] https://github.com/jsmits/github-cli
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/python-packages.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 681b390ac1d0..6ff71bd216c8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -2129,26 +2129,6 @@ in {
     };
   };
 
-  github-cli = buildPythonPackage rec {
-    version = "1.0.0";
-    name = "github-cli-${version}";
-    src = pkgs.fetchFromGitHub {
-      owner = "jsmits";
-      repo = "github-cli";
-      rev = version;
-      sha256 = "16bwn42wqd76zs97v8p6mqk79p5i2mb06ljk67lf8gy6kvqc1x8y";
-    };
-
-    buildInputs = with self; [ nose pkgs.git ];
-    propagatedBuildInputs = with self; [ simplejson ];
-
-    # skipping test_issues_cli.py since it requires access to the github.com
-    patchPhase = "rm tests/test_issues_cli.py";
-    checkPhase = "nosetests tests/";
-
-    meta.maintainers = with maintainers; [ garbas ];
-  };
-
   case = buildPythonPackage rec {
     name = "case-${version}";
     version = "1.5.2";