mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-08 10:20:41 +00:00
and a python3 package
This commit is contained in:
parent
238a9697d5
commit
884e82dab1
13
shell.nix
13
shell.nix
@ -1,7 +1,12 @@
|
||||
with (import <nixpkgs> {});
|
||||
let mavenJdk11 = maven.override {
|
||||
jdk = pkgs.jdk11;
|
||||
};
|
||||
let
|
||||
mavenJdk11 = maven.override {
|
||||
jdk = pkgs.jdk11;
|
||||
};
|
||||
my-python3-packages = python3-packages: with python3-packages; [
|
||||
lxml
|
||||
];
|
||||
python3-with-my-packages = pkgs.python3.withPackages my-python3-packages;
|
||||
in
|
||||
mkShell {
|
||||
nativeBuildInputs = [
|
||||
@ -10,6 +15,6 @@ mkShell {
|
||||
mavenJdk11
|
||||
nodejs-14_x
|
||||
which # required by Vaadin
|
||||
python3
|
||||
python3-with-my-packages
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user