mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 07:48:58 +00:00
Merge pull request #59605 from montag451/git-annex-remote-dbx
git-annex-remote-dbx: init at 1.0.3
This commit is contained in:
commit
302a770a51
|
@ -61,6 +61,15 @@ let
|
||||||
|
|
||||||
git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { };
|
git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { };
|
||||||
|
|
||||||
|
git-annex-remote-dbx = callPackage ./git-annex-remote-dbx {
|
||||||
|
inherit (python3Packages)
|
||||||
|
buildPythonApplication
|
||||||
|
fetchPypi
|
||||||
|
dropbox
|
||||||
|
annexremote
|
||||||
|
humanfriendly;
|
||||||
|
};
|
||||||
|
|
||||||
git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };
|
git-annex-remote-rclone = callPackage ./git-annex-remote-rclone { };
|
||||||
|
|
||||||
git-bug = callPackage ./git-bug { };
|
git-bug = callPackage ./git-bug { };
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
|
, fetchPypi
|
||||||
|
, dropbox
|
||||||
|
, annexremote
|
||||||
|
, humanfriendly
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "git-annex-remote-dbx";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "5b6f8025ed1e9877f06882ddbd81f701a8e094647ab97595e2afc09016835a7c";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ dropbox annexremote humanfriendly ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A git-annex special remote for Dropbox";
|
||||||
|
homepage = https://pypi.org/project/git-annex-remote-dbx/;
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue