graphPaname/shell.nix

22 lines
292 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
flask
altair
pytest
# Development tools
black
isort
pyflakes
python-language-server
pyls-black
pyls-isort
];
}