From b51454eb54305a446fc8be82eea218d054dbc286 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Mon, 5 Feb 2018 01:49:42 +0100 Subject: [PATCH] pythonPackages.github-cli: removed since upstream declared project non-functional MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- pkgs/top-level/python-packages.nix | 20 -------------------- 1 file changed, 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";