mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
26 lines
593 B
Nix
26 lines
593 B
Nix
{ 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 = "Git-annex special remote for Dropbox";
|
|
homepage = "https://pypi.org/project/git-annex-remote-dbx/";
|
|
license = licenses.mit;
|
|
mainProgram = "git-annex-remote-dbx";
|
|
};
|
|
}
|