hb-downloader/shell.nix
2024-03-09 22:55:34 +01:00

15 lines
237 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "hb-downloader";
buildInputs = [
(pkgs.python3.withPackages ( pyPkgs: with pyPkgs; [
requests
mypy
]))
];
nativeBuildInputs = [
pkgs.aria2
];
}