Add shell.nix for nix users

This commit is contained in:
2024-05-30 17:04:01 +02:00
parent 3110c7352e
commit 82a36aa00c

19
shell.nix Normal file
View File

@@ -0,0 +1,19 @@
{pkgs ? import <nixpkgs> {}}: 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
];
}