rmfuse: relax version constraints

This commit is contained in:
Robert Schütz 2024-01-23 21:09:22 -08:00
parent 64ea6ac783
commit 69d5060b91

View File

@ -7,7 +7,7 @@ python3.pkgs.buildPythonApplication rec {
pname = "rmfuse"; pname = "rmfuse";
version = "unstable-2021-06-06"; version = "unstable-2021-06-06";
format = "pyproject"; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rschroll"; owner = "rschroll";
@ -16,13 +16,15 @@ python3.pkgs.buildPythonApplication rec {
hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8="; hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8=";
}; };
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'bidict = "^' 'bidict = ">='
'';
nativeBuildInputs = with python3.pkgs; [ nativeBuildInputs = with python3.pkgs; [
poetry-core poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"bidict"
"rmrl"
"xdg"
]; ];
propagatedBuildInputs = with python3.pkgs; [ propagatedBuildInputs = with python3.pkgs; [