add nix shell

This commit is contained in:
Mike Heier 2023-07-16 15:36:39 -04:00
parent 60073483db
commit daa5082ca3

14
default.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs.buildPackages; [
python3Packages.uvloop
python3Packages.click
python3Packages.uvicorn
python3Packages.httpx
python3Packages.loguru
python3Packages.pydantic
python3Packages.python-dotenv
poetry
];
}