pcomon/shell.nix

9 lines
144 B
Nix
Raw Normal View History

2025-01-11 13:54:37 -06:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
pkgs.python3
pkgs.python311Packages.requests
];
}