git-annex-remote-googledrive: add missing distutils dependency

This commit is contained in:
Gaute Ravndal 2024-09-06 15:50:19 +02:00
parent 989ec1afaa
commit 8ce786ec86
2 changed files with 3 additions and 9 deletions

View File

@ -7,6 +7,7 @@
, humanfriendly
, tenacity
, setuptools
, distutils
}:
buildPythonApplication rec {
@ -27,6 +28,7 @@ buildPythonApplication rec {
gitpython
tenacity
humanfriendly
distutils
];
# while git-annex does come with a testremote command that *could* be used,

View File

@ -2211,15 +2211,7 @@ with pkgs;
humanfriendly;
};
git-annex-remote-googledrive = callPackage ../applications/version-management/git-annex-remote-googledrive {
inherit (python3Packages)
buildPythonApplication
annexremote
drivelib
gitpython
tenacity
humanfriendly;
};
git-annex-remote-googledrive = python3Packages.callPackage ../applications/version-management/git-annex-remote-googledrive { };
git-annex-remote-rclone = callPackage ../applications/version-management/git-annex-remote-rclone { };