Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

duplicity: Disable pydrive2 support #369289

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkgs/by-name/du/duplicity/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ let
paramiko
pyasn1
pycrypto
pydrive2
# Currently marked as broken.
# pydrive2
future
]
++ paramiko.optional-dependencies.invoke;
Expand Down
4 changes: 4 additions & 0 deletions pkgs/development/python-modules/pydrive2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ buildPythonPackage rec {
description = "Google Drive API Python wrapper library";
homepage = "https://github.com/iterative/PyDrive2";
changelog = "https://github.com/iterative/PyDrive2/releases/tag/${version}";
# Not compatible with pyopenssl 24.3.0
# https://github.com/iterative/PyDrive2/issues/361
# TODO: re-enable it in `duplicity` when fixed
broken = true;
license = licenses.asl20;
maintainers = with maintainers; [ sei40kr ];
};
Expand Down
Loading