graphPaname/shell.nix

24 lines
321 B
Nix
Raw Normal View History

2020-05-21 17:21:36 +02:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs.python37Packages;
pkgs.mkShell {
buildInputs = [
# Dependencies
pandas
requests
starlette
2020-05-21 17:21:36 +02:00
altair
folium
2020-05-21 17:21:36 +02:00
pytest
# Development tools
black
isort
pyflakes
python-language-server
pyls-black
pyls-isort
2020-06-05 13:48:47 +02:00
pyls-mypy
2020-05-21 17:21:36 +02:00
];
}