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 + ]; + }