piston-cli: fix build

This commit is contained in:
Albert Safin 2022-11-27 16:33:16 +00:00
parent a115bb9bd5
commit 779cfe0054

View file

@ -3,6 +3,7 @@
python3Packages.buildPythonApplication rec {
pname = "piston-cli";
version = "1.4.3";
format = "pyproject";
src = python3Packages.fetchPypi {
inherit pname version;
@ -15,6 +16,16 @@ python3Packages.buildPythonApplication rec {
$out/bin/piston --help > /dev/null
'';
nativeBuildInputs = with python3Packages; [
poetry-core
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'rich = "^10.1.0"' 'rich = "*"' \
--replace 'PyYAML = "^5.4.1"' 'PyYAML = "*"'
'';
meta = with lib; {
broken = stdenv.isDarwin;
description = "Piston api tool";