depot/nix/pkgs/factorio-mods/shell.nix

17 lines
287 B
Nix
Raw Normal View History

{ depot ? import <depot> {} }:
let
inherit (depot) pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
black
python3
python3.pkgs.isort
python3.pkgs.absl-py
python3.pkgs.requests
python3.pkgs.attrs
python3.pkgs.pytest
depot.nix.pkgs.libsolv-py
];
}