-
Notifications
You must be signed in to change notification settings - Fork 27
/
default.nix
54 lines (48 loc) · 1.61 KB
/
default.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
with import <nixpkgs> { };
let
# For packages pinned to a specific version
pinnedHash = "933d7dc155096e7575d207be6fb7792bc9f34f6d";
pinnedPkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/${pinnedHash}.tar.gz") { };
pythonPackages = pinnedPkgs.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
# By preference, install packages from nixpkgs first,
# falling back to requirements.txt if that is not possible
pythonPackages.six
pythonPackages.jinja2
pythonPackages.markupsafe
pythonPackages.pygments
pythonPackages.docutils
pythonPackages.polib
#pythonPackages.sphinx-intl
pythonPackages.twitter
pinnedPkgs.sphinx
pinnedPkgs.argparse
pinnedPkgs.rpl
# Simple http server to test the built docs
pinnedPkgs.httplz
];
# Run this command, only after creating the virtual environment
postVenvCreation = ''
unset SOURCE_DATE_EPOCH
pip install -r requirements.txt
'';
# Note!! Adding content to shellHook below will prevent requirements.txt
# being installed.
shellHook = ''
'';
# 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
'';
}