mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
gphotos-sync: relax build dependencies
This commit is contained in:
parent
118c2681fb
commit
30a4bbc896
@ -21,7 +21,19 @@ python3.pkgs.buildPythonApplication rec {
|
||||
./skip-network-tests.patch
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ];
|
||||
# Consider fixing this upstream by following up on:
|
||||
# https://github.com/gilesknap/gphotos-sync/issues/441
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace "setuptools<57" "setuptools" \
|
||||
--replace "wheel==0.33.1" "wheel"
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
pythonRelaxDepsHook
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"psutil"
|
||||
|
Loading…
Reference in New Issue
Block a user