From 9312f0b04d2772386682ad312ae2cf78b3f7c045 Mon Sep 17 00:00:00 2001 From: Frantisek Bohacek Date: Mon, 2 Oct 2023 19:02:34 +0200 Subject: [PATCH] chore: remove shells --- shells/python.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 shells/python.nix diff --git a/shells/python.nix b/shells/python.nix deleted file mode 100644 index 660e696..0000000 --- a/shells/python.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.mkShell { - packages = with pkgs; [ - (pkgs.python3.withPackages (ps: [ - ps.pip - ps.tkinter - ])) - python-language-server - poetry # Instead of pip, you can use $ poetry init -n --name and $ poetry add request to install python packages - ]; - shellHook = '' - export PIP_PREFIX=$(pwd)/_build/pip_packages - export PYTHONPATH="$PIP_PREFIX/${pkgs.python3.sitePackages}:$PYTHONPATH" - export PATH="$PIP_PREFIX/bin:$PATH" - unset SOURCE_DATE_EPOCH - ''; -} -- 2.48.1