Skip to content

Commit

Permalink
git-annex-remote-googledrive: init at 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
poelzi committed Sep 12, 2018
1 parent 33b4de4 commit 456d876
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ let

git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };

git-annex-remote-googledrive = callPackage ./git-annex-remote-googledrive { };

# support for bugzilla
git-bz = callPackage ./git-bz { };

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#{ stdenv, pythonPackages, fetchPypi, rclone, makeWrapper }:
{ stdenv, lib, python3 }:

python3.pkgs.buildPythonApplication rec {
pname = "git-annex-remote-googledrive";
version = "0.11.1";

src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "1vaycxmxhx8g797nzrnkmz5vbmjy4x7x3b7a2xb7yz6grgcxqgld";
};

buildInputs = [ ];
propagatedBuildInputs = [ python3.pkgs.pydrive python3.pkgs.annexremote python3.pkgs.tenacity ];

meta = with stdenv.lib; {
description = "Git annex remote for GoogleDrive";
license = licenses.lgpl3;
maintainers = with maintainers; [ poelzi ];
};

}

0 comments on commit 456d876

Please sign in to comment.