latest working

This commit is contained in:
Julian Sutter 2023-03-23 18:13:40 -07:00
parent e8f48e2cee
commit 016abedabf
2 changed files with 5 additions and 11 deletions

View file

@ -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
];
}