diff --git a/README.md b/README.md index 9d00555..7661f06 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,12 @@ source .env/bin/activate pip3 install maturin pyperf pytest ``` +Or you can use NIX to drop you into a shell with everything installed + +``` +nix-shell +``` + Build the development version and use it: ``` diff --git a/shell.nix b/shell.nix index 65d086d..9c6ddb4 100644 --- a/shell.nix +++ b/shell.nix @@ -5,6 +5,8 @@ python39 python39Packages.pip python39Packages.virtualenv + python39Packages.pytest + python39Packages.pyperf maturin ]); runScript = "bash";