From 9360e75387d11b1614b251d14d099cde803d3c1e Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 4 May 2024 13:33:07 -0700 Subject: don't install the script for pizza --- packages/pizza/default.nix | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 packages/pizza/default.nix (limited to 'packages') diff --git a/packages/pizza/default.nix b/packages/pizza/default.nix deleted file mode 100644 index cf5e836..0000000 --- a/packages/pizza/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, python3 }: - -python3.pkgs.buildPythonApplication rec { - pname = "pizza"; - src = ./pizza.py; - version = "0.1.0"; - format = "other"; - - buildInputs = [ python3 ]; - propagatedBuildInputs = with python3.pkgs; [ - beautifulsoup4 - prettytable - requests - termcolor - ]; - - dontUnpack = true; - dontBuild = true; - - installPhase = '' - mkdir -p $out/bin - cp $src $out/bin/${pname} - ''; - - meta = with lib; { - description = "Get the pizza for the week for CheeseBoard."; - license = with licenses; [ mit ]; - platforms = platforms.unix; - maintainers = with maintainers; [ fcuny ]; - }; -} -- cgit 1.4.1