Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
695 B
Nix
34 lines
695 B
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchPypi,
|
|
dropbox,
|
|
annexremote,
|
|
humanfriendly,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "git-annex-remote-dbx";
|
|
version = "1.0.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5b6f8025ed1e9877f06882ddbd81f701a8e094647ab97595e2afc09016835a7c";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dropbox
|
|
annexremote
|
|
humanfriendly
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Git-annex special remote for Dropbox";
|
|
homepage = "https://pypi.org/project/git-annex-remote-dbx/";
|
|
license = licenses.mit;
|
|
mainProgram = "git-annex-remote-dbx";
|
|
maintainers = with maintainers; [ matthiasbeyer ];
|
|
};
|
|
}
|