python2Packages.gdrivefs: remove

It was broken due to python2Packages.gipc being broken for multiple releases.
main
Robert Schütz 2 years ago committed by Martin Weinelt
parent 4acf7d91b3
commit 63b5ee56a6
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 50
      pkgs/development/python-modules/gdrivefs/default.nix
  2. 2
      pkgs/top-level/all-packages.nix
  3. 2
      pkgs/top-level/python2-packages.nix

@ -1,50 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, isPy3k
, gipc
, greenlet
, httplib2
, six
, python-dateutil
, fusepy
, google-api-python-client
}:
buildPythonPackage rec {
version = "0.14.12";
pname = "gdrivefs";
disabled = isPy3k;
src = fetchFromGitHub {
owner = "dsoprea";
repo = "GDriveFS";
rev = version;
sha256 = "sha256-eDBy2rp3uitUrR9CG75x8mAio8+gaSckA/lEPAWO0Yo=";
};
buildInputs = [ gipc greenlet httplib2 six ];
propagatedBuildInputs = [ python-dateutil fusepy google-api-python-client ];
patchPhase = ''
substituteInPlace gdrivefs/resources/requirements.txt \
--replace "==" ">="
'';
meta = with lib; {
description = "Mount Google Drive as a local file system";
longDescription = ''
GDriveFS is a FUSE wrapper for Google Drive developed. Design goals:
- Thread for monitoring changes via "changes" functionality of API.
- Complete stat() implementation.
- Seamlessly work around duplicate-file allowances in Google Drive.
- Seamlessly manage file-type versatility in Google Drive
(Google Doc files do not have a particular format).
- Allow for the same file at multiple paths.
'';
homepage = "https://github.com/dsoprea/GDriveFS";
license = licenses.gpl2;
platforms = platforms.unix;
};
}

@ -3082,8 +3082,6 @@ with pkgs;
gbsplay = callPackage ../applications/audio/gbsplay { };
gdrivefs = python27Packages.gdrivefs;
gdrive = callPackage ../applications/networking/gdrive { };
gdu = callPackage ../tools/system/gdu { };

@ -145,8 +145,6 @@ with self; with super; {
gateone = callPackage ../development/python-modules/gateone { };
gdrivefs = callPackage ../development/python-modules/gdrivefs { };
gsd = callPackage ../development/python-modules/gsd/1.7.nix { };
gnutls = callPackage ../development/python-modules/gnutls { };

Loading…
Cancel
Save