Files
guessit/shell.nix
2024-05-30 17:04:01 +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
];
}