about summary refs log tree commit diff
path: root/pkgs/tools/misc/piston-cli
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/piston-cli')
-rw-r--r--pkgs/tools/misc/piston-cli/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/misc/piston-cli/default.nix b/pkgs/tools/misc/piston-cli/default.nix
deleted file mode 100644
index 68519f2eb643..000000000000
--- a/pkgs/tools/misc/piston-cli/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ 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
-  ];
-
-  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 ];
-    mainProgram = "piston";
-  };
-}