mirror of
https://github.com/zoriya/guessit.git
synced 2025-12-06 06:16:09 +00:00
20 lines
292 B
Nix
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
|
|
];
|
|
}
|