dotfiles/entropy/nixos/modules/python.nix
2020-12-21 15:13:39 +01:00

17 lines
343 B
Nix

# This file is not linked
{ pkgs, ... }:
{
environment.systemPackages = with pkgs;
let
my-python-packages = python-packages: with python-packages; [
pygments
pandas
numpy
pylint
# rpy2
];
python-with-my-packages = python3.withPackages my-python-packages;
in
[ python-with-my-packages ];
}