rmfuse: relax version constraints

+8 -6
+8 -6
pkgs/tools/filesystems/rmfuse/default.nix
··· 7 pname = "rmfuse"; 8 version = "unstable-2021-06-06"; 9 10 - format = "pyproject"; 11 12 src = fetchFromGitHub { 13 owner = "rschroll"; ··· 15 rev = "3796b8610c8a965a60a417fc0bf8ea5200b71fd2"; 16 hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8="; 17 }; 18 - 19 - postPatch = '' 20 - substituteInPlace pyproject.toml \ 21 - --replace 'bidict = "^' 'bidict = ">=' 22 - ''; 23 24 nativeBuildInputs = with python3.pkgs; [ 25 poetry-core 26 ]; 27 28 propagatedBuildInputs = with python3.pkgs; [
··· 7 pname = "rmfuse"; 8 version = "unstable-2021-06-06"; 9 10 + pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "rschroll"; ··· 15 rev = "3796b8610c8a965a60a417fc0bf8ea5200b71fd2"; 16 hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8="; 17 }; 18 19 nativeBuildInputs = with python3.pkgs; [ 20 poetry-core 21 + pythonRelaxDepsHook 22 + ]; 23 + 24 + pythonRelaxDeps = [ 25 + "bidict" 26 + "rmrl" 27 + "xdg" 28 ]; 29 30 propagatedBuildInputs = with python3.pkgs; [