forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / applications / version-management / git-annex-remote-dbx / default.nix
blob041972e146b7b9797f44511e4f58891c3869c69a
1 { lib
2 , buildPythonApplication
3 , fetchPypi
4 , dropbox
5 , annexremote
6 , humanfriendly
7 }:
9 buildPythonApplication rec {
10   pname = "git-annex-remote-dbx";
11   version = "1.0.3";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "5b6f8025ed1e9877f06882ddbd81f701a8e094647ab97595e2afc09016835a7c";
16   };
18   propagatedBuildInputs = [ dropbox annexremote humanfriendly ];
20   meta = with lib; {
21     description = "Git-annex special remote for Dropbox";
22     homepage = "https://pypi.org/project/git-annex-remote-dbx/";
23     license = licenses.mit;
24     mainProgram = "git-annex-remote-dbx";
25   };