mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
rmfuse: relax version constraints
This commit is contained in:
parent
64ea6ac783
commit
69d5060b91
@ -7,7 +7,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
pname = "rmfuse";
|
||||
version = "unstable-2021-06-06";
|
||||
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rschroll";
|
||||
@ -16,13 +16,15 @@ python3.pkgs.buildPythonApplication rec {
|
||||
hash = "sha256-W3kS6Kkmp8iWMOYFL7r1GyjSQvFotBXQCuTMK0vyHQ8=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace 'bidict = "^' 'bidict = ">='
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"bidict"
|
||||
"rmrl"
|
||||
"xdg"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
|
Loading…
Reference in New Issue
Block a user