piston-cli: fix build
This commit is contained in:
parent
c283c92d90
commit
01fc7c527c
1 changed files with 6 additions and 5 deletions
|
@ -18,13 +18,14 @@ python3Packages.buildPythonApplication rec {
|
|||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace 'rich = "^10.1.0"' 'rich = "*"' \
|
||||
--replace 'PyYAML = "^5.4.1"' 'PyYAML = "*"'
|
||||
'';
|
||||
pythonRelaxDeps = [
|
||||
"rich"
|
||||
"more-itertools"
|
||||
"PyYAML"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
|
|
Loading…
Reference in a new issue