pythonPackages.gdrivefs: refactor move to python-modules
This commit is contained in:
parent
b5ae82f5b8
commit
235c6edd42
48
pkgs/development/python-modules/gdrivefs/default.nix
Normal file
48
pkgs/development/python-modules/gdrivefs/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchurl
|
||||||
|
, isPy3k
|
||||||
|
, gipc
|
||||||
|
, greenlet
|
||||||
|
, httplib2
|
||||||
|
, six
|
||||||
|
, dateutil
|
||||||
|
, fusepy
|
||||||
|
, google_api_python_client
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "0.14.9";
|
||||||
|
pname = "gdrivefs";
|
||||||
|
disabled = isPy3k;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/dsoprea/GDriveFS/archive/${version}.tar.gz";
|
||||||
|
sha256 = "1mc2r35nf5k8vzwdcdhi0l9rb97amqd5xb53lhydj8v8f4rndk7a";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gipc greenlet httplib2 six ];
|
||||||
|
propagatedBuildInputs = [ dateutil fusepy google_api_python_client ];
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace gdrivefs/resources/requirements.txt \
|
||||||
|
--replace "==" ">="
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2358,41 +2358,7 @@ in {
|
|||||||
pythonPackages = self;
|
pythonPackages = self;
|
||||||
});
|
});
|
||||||
|
|
||||||
gdrivefs = buildPythonPackage rec {
|
gdrivefs = callPackage ../development/python-modules/gdrivefs { };
|
||||||
version = "0.14.9";
|
|
||||||
name = "gdrivefs-${version}";
|
|
||||||
namePrefix = "";
|
|
||||||
disabled = !isPy27;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "https://github.com/dsoprea/GDriveFS/archive/${version}.tar.gz";
|
|
||||||
sha256 = "1mc2r35nf5k8vzwdcdhi0l9rb97amqd5xb53lhydj8v8f4rndk7a";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ gipc greenlet httplib2 six ];
|
|
||||||
propagatedBuildInputs = with self; [ dateutil fusepy google_api_python_client ];
|
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
substituteInPlace gdrivefs/resources/requirements.txt \
|
|
||||||
--replace "==" ">="
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
genshi = buildPythonPackage {
|
genshi = buildPythonPackage {
|
||||||
name = "genshi-0.7";
|
name = "genshi-0.7";
|
||||||
|
Loading…
Reference in New Issue
Block a user