summaryrefslogtreecommitdiffstats
path: root/pkgs/misc/flashfocus
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-01-11 21:09:45 +0000
committerRobert Schütz <github@dotlambda.de>2022-01-11 18:47:31 -0800
commita9977abefe78db53a42263deea9c9dfe3fe8c283 (patch)
treedcdedd2bdd2c9cb1a3cc1b05057ba24905cf0283 /pkgs/misc/flashfocus
parent69ef2ab05a3999074a07bd186f683226b50672c8 (diff)
flashfocus: unpin pyyaml
Diffstat (limited to 'pkgs/misc/flashfocus')
-rw-r--r--pkgs/misc/flashfocus/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/misc/flashfocus/default.nix b/pkgs/misc/flashfocus/default.nix
index 6a8786be6eaa..fd93260a4bca 100644
--- a/pkgs/misc/flashfocus/default.nix
+++ b/pkgs/misc/flashfocus/default.nix
@@ -9,6 +9,11 @@ python3.pkgs.buildPythonApplication rec {
sha256 = "0cn44hryvz2wl7xklaslxsb3l2i3f8jkgmml0n9v2ks22j5l4r4h";
};
+ postPatch = ''
+ substituteInPlace setup.py \
+ --replace "pyyaml>=5.1,<6.0" "pyyaml>=5.1"
+ '';
+
nativeBuildInputs = with python3.pkgs; [
pytest-runner
];