From 82a36aa00c42fbb5de6575819cc74f70b9bf00ce Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Thu, 30 May 2024 17:04:01 +0200 Subject: [PATCH] Add shell.nix for nix users --- shell.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..034cb51 --- /dev/null +++ b/shell.nix @@ -0,0 +1,19 @@ +{pkgs ? import {}}: let + python = pkgs.python312.withPackages (ps: + with ps; [ + rebulk + babelfish + python-dateutil + pytest + pytest-mock + pytest-benchmark + pytest-cov + pylint + pyyaml + ]); +in + pkgs.mkShell { + packages = [ + python + ]; + }