14 lines
215 B
Nix
14 lines
215 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
with pkgs;
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
# Python development environment
|
|
(python3.withPackages(ps: with ps; [
|
|
requests
|
|
]))
|
|
];
|
|
}
|
|
|