depot/third_party/nixpkgs/pkgs/tools/misc/piston-cli/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

37 lines
858 B
Nix

{ stdenv, lib, python3Packages, fetchPypi }:
python3Packages.buildPythonApplication rec {
pname = "piston-cli";
version = "1.4.3";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "qvDGVJcaMXUajdUQWl4W1dost8k0PsS9XX/o8uQrtfY=";
};
propagatedBuildInputs = with python3Packages; [ rich prompt-toolkit requests pygments pyyaml more-itertools ];
checkPhase = ''
$out/bin/piston --help > /dev/null
'';
nativeBuildInputs = with python3Packages; [
poetry-core
pythonRelaxDepsHook
];
pythonRelaxDeps = [
"rich"
"more-itertools"
"PyYAML"
];
meta = with lib; {
broken = stdenv.isDarwin;
description = "Piston api tool";
homepage = "https://github.com/Shivansh-007/piston-cli";
license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 ];
};
}