latest working
This commit is contained in:
parent
e8f48e2cee
commit
016abedabf
2 changed files with 5 additions and 11 deletions
|
|
@ -1,15 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
my-python-packages = p: with p; [
|
||||
pandas
|
||||
requests
|
||||
# other python packages
|
||||
];
|
||||
in
|
||||
environment.systemPackages = [
|
||||
(pkgs.python3.withPackages my-python-packages)
|
||||
nodejs
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
(python3.withPackages(ps: with ps; [ pandas requests]))
|
||||
nodejs
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue