mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +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";
|
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; [
|
||||||
|
Loading…
Reference in New Issue
Block a user