Add shell.nix for nix users

This commit is contained in:
2024-05-30 17:04:01 +02:00
parent b145ae2791
commit d3b06fac45
+19
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
];
}