10 lines
233 B
Nix
10 lines
233 B
Nix
let
|
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/refs/tags/25.11.tar.gz") {};
|
|
in pkgs.mkShell {
|
|
packages = [
|
|
(pkgs.python3.withPackages (python-pkgs: with python-pkgs; [
|
|
requests
|
|
]))
|
|
];
|
|
}
|