nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonApplication,
4 fetchPypi,
5 dropbox,
6 annexremote,
7 humanfriendly,
8}:
9
10buildPythonApplication rec {
11 pname = "git-annex-remote-dbx";
12 version = "1.0.3";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "5b6f8025ed1e9877f06882ddbd81f701a8e094647ab97595e2afc09016835a7c";
18 };
19
20 propagatedBuildInputs = [
21 dropbox
22 annexremote
23 humanfriendly
24 ];
25
26 meta = with lib; {
27 description = "Git-annex special remote for Dropbox";
28 homepage = "https://pypi.org/project/git-annex-remote-dbx/";
29 license = licenses.mit;
30 mainProgram = "git-annex-remote-dbx";
31 maintainers = with maintainers; [ matthiasbeyer ];
32 };
33}