-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshell.nix
34 lines (30 loc) · 729 Bytes
/
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
with import <nixpkgs> {};
( let
wordcloud = pkgs.python3Packages.buildPythonPackage rec {
pname = "wordcloud";
version = "1.8.2.2";
src = pkgs.python3Packages.fetchPypi{
inherit version; inherit pname;
sha256 = "Uj24h+R+hA61wuYEKCQ7sddDn9xg+JYmsXuvob5kRZw=";
};
propagatedBuildInputs = with pkgs.python3Packages; [
matplotlib
numpy
pillow
];
doCheck = false;
};
in pkgs.python3.buildEnv.override rec {
extraLibs = with pkgs.python3Packages; [
matplotlib
spacy
pandas
spacy_models.en_core_web_lg
jupyter
jupyterlab # Dev
scikitlearn
nltk
# altair
wordcloud
];
}).env