gphotos-sync: add recommended package
This commit is contained in:
parent
e1c735229e
commit
4f91b61192
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchFromGitHub, python3Packages }:
|
{ lib, fetchFromGitHub, python3Packages, ffmpeg }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "gphotos-sync";
|
pname = "gphotos-sync";
|
||||||
|
@ -19,10 +19,14 @@ python3Packages.buildPythonApplication rec {
|
||||||
pyyaml
|
pyyaml
|
||||||
requests_oauthlib
|
requests_oauthlib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
buildInputs = [ ffmpeg ];
|
||||||
|
|
||||||
checkInputs = with python3Packages; [
|
checkInputs = with python3Packages; [
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
mock
|
mock
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
export HOME=$(mktemp -d)
|
export HOME=$(mktemp -d)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue