odapi/shell.nix

24 lines
491 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
# Dependencies
python38Packages.fastapi
python38Packages.uvicorn
python38Packages.pydantic
python38Packages.email_validator
python38Packages.sqlalchemy
python38Packages.alembic
python38Packages.pytest
python38Packages.twilio
2020-09-30 11:27:48 +02:00
python38Packages.passlib
python38Packages.bcrypt
2020-07-03 02:03:02 +02:00
sqlite
# Development tools
python38Packages.isort
python38Packages.pyflakes
];
}