mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 11:33:07 +01:00
16 lines
315 B
Nix
16 lines
315 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
let
|
|
inherit (import ../../options.nix) python;
|
|
my-python-packages = ps: with ps; [
|
|
pandas
|
|
requests
|
|
];
|
|
in lib.mkIf (python == true) {
|
|
environment.systemPackages = with pkgs; [
|
|
jetbrains.pycharm-community-bin
|
|
(pkgs.python3.withPackages my-python-packages)
|
|
];
|
|
|
|
}
|