hb-downloader/shell.nix

15 lines
237 B
Nix
Raw Normal View History

2024-03-07 19:29:34 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hb-downloader";
buildInputs = [
2024-03-09 22:55:34 +01:00
(pkgs.python3.withPackages ( pyPkgs: with pyPkgs; [
requests
mypy
2024-03-07 19:29:34 +01:00
]))
2024-03-07 20:27:09 +01:00
];
nativeBuildInputs = [
2024-03-07 19:29:34 +01:00
pkgs.aria2
];
}