From 164704220b09e0f18f8be918f9fde025355f0dcd Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Sun, 5 Jun 2022 13:47:31 -0600 Subject: Get a basic flake set up --- nix/mypython.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nix/mypython.nix (limited to 'nix/mypython.nix') diff --git a/nix/mypython.nix b/nix/mypython.nix new file mode 100644 index 0000000..aa262d4 --- /dev/null +++ b/nix/mypython.nix @@ -0,0 +1,13 @@ +{ python3, flake8-isort }: + +let + my-python-packages = python-packages: with python-packages; [ + jedi-language-server + flake8 + flake8-isort + isort + black + ]; + mypython = python3.withPackages my-python-packages; +in +mypython -- cgit v1.2.3