2020-05-28 00:53:23 +02:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
|
2020-06-21 15:58:43 +02:00
|
|
|
with pkgs;
|
2020-05-28 00:53:23 +02:00
|
|
|
|
2020-06-21 15:58:43 +02:00
|
|
|
mkShell {
|
2020-05-28 00:53:23 +02:00
|
|
|
buildInputs = [
|
|
|
|
# Dependencies
|
2020-06-21 15:58:43 +02:00
|
|
|
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
|
2020-05-28 00:53:23 +02:00
|
|
|
# Development tools
|
2020-06-21 15:58:43 +02:00
|
|
|
python38Packages.isort
|
|
|
|
python38Packages.pyflakes
|
2020-05-28 00:53:23 +02:00
|
|
|
];
|
|
|
|
}
|