Files
guessit/shell.nix
2024-06-03 19:31:19 +02:00

20 lines
292 B
Nix

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