forked from mirrors/nixpkgs
gphotos-sync: init at 2.14.2
This commit is contained in:
parent
791fc803c7
commit
fbef268c3c
44
pkgs/tools/backup/gphotos-sync/default.nix
Normal file
44
pkgs/tools/backup/gphotos-sync/default.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "gphotos-sync";
|
||||
version = "2.14.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gilesknap";
|
||||
repo = "gphotos-sync";
|
||||
rev = version;
|
||||
sha256 = "0cfmbrdy6w18hb623rjn0a4hnn3n63jw2jlmgn4a2k1sjqhpx3bf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
appdirs
|
||||
attrs
|
||||
exif
|
||||
psutil
|
||||
pyyaml
|
||||
requests_oauthlib
|
||||
];
|
||||
checkInputs = with python3Packages; [
|
||||
pytestCheckHook
|
||||
mock
|
||||
];
|
||||
checkPhase = ''
|
||||
export HOME=$(mktemp -d)
|
||||
|
||||
# patch to skip all tests that do network access
|
||||
cat >>test/test_setup.py <<EOF
|
||||
import pytest, requests
|
||||
requests.Session.__init__ = lambda *args, **kwargs: pytest.skip("no network access")
|
||||
EOF
|
||||
|
||||
pytestCheckPhase
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Google Photos and Albums backup with Google Photos Library API";
|
||||
homepage = "https://github.com/gilesknap/gphotos-sync";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dnr ];
|
||||
};
|
||||
}
|
|
@ -4918,6 +4918,8 @@ in
|
|||
|
||||
ldmtool = callPackage ../tools/misc/ldmtool { };
|
||||
|
||||
gphotos-sync = callPackage ../tools/backup/gphotos-sync { };
|
||||
|
||||
gpodder = callPackage ../applications/audio/gpodder { };
|
||||
|
||||
gpp = callPackage ../development/tools/gpp { };
|
||||
|
|
Loading…
Reference in a new issue