forked from worldbank/GEEST
-
Notifications
You must be signed in to change notification settings - Fork 2
/
shell.nix
67 lines (62 loc) · 2.14 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
with import <nixpkgs> { };
let
# For packages pinned to a specific version
pinnedHash = "nixos-23.11";
pinnedPkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/${pinnedHash}.tar.gz") { };
pythonPackages = python3Packages;
in pkgs.mkShell rec {
name = "impurePythonEnv";
venvDir = "./.venv";
buildInputs = [
# A Python interpreter including the 'venv' module is required to bootstrap
# the environment.
pythonPackages.python
# This executes some shell code to initialize a venv in $venvDir before
# dropping into the shell
pythonPackages.venvShellHook
pinnedPkgs.virtualenv
# Those are dependencies that we would like to use from nixpkgs, which will
# add them to PYTHONPATH and thus make them accessible from within the venv.
pythonPackages.debugpy
pythonPackages.numpy
pythonPackages.pip
pythonPackages.geopandas
pythonPackages.rasterio
pinnedPkgs.vim
qgis
# Would be nice if this worked, we could replace the same logic in the QGIS start script
#qgis.override { extraPythonPackages = ps: [ ps.numpy ps.future ps.geopandas ps.rasterio ];}
gum # UX for TUIs
skate # Distributed key/value store
glow # terminal markdown viewer
];
# Run this command, only after creating the virtual environment
PROJECT_ROOT = builtins.getEnv "PWD";
postVenvCreation = ''
unset SOURCE_DATE_EPOCH
pip install -r requirements.txt
echo "-----------------------"
echo "🌈 Your Dev Environment is prepared."
echo "Run qgis from the command line"
echo "for a qgis environment with"
echo "geopandas and rasterio, start QGIS"
echo "like this:"
echo ""
echo "./start_qgis.sh"
echo ""
echo "📒 Note:"
echo "-----------------------"
echo "We provide a ready to use"
echo "VSCode environment which you"
echo "can start like this:"
echo ""
echo "./vscode.sh"
echo "-----------------------"
'';
# Now we can execute any commands within the virtual environment.
# This is optional and can be left out to run pip manually.
postShellHook = ''
# allow pip to install wheels
unset SOURCE_DATE_EPOCH
'';
}