2020-03-27 20:56:33 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
2019-10-23 03:44:17 +02:00
|
|
|
|
2020-06-01 02:39:46 +02:00
|
|
|
with lib;
|
|
|
|
|
2019-10-23 03:44:17 +02:00
|
|
|
let
|
2020-03-27 20:56:33 +01:00
|
|
|
fn = import ../fn.nix { inherit lib; };
|
2019-10-23 03:44:17 +02:00
|
|
|
gitpkgs = import /nixpkgs {};
|
|
|
|
in {
|
2020-03-27 20:56:33 +01:00
|
|
|
config.machine.pkgsets.python3.pkgwrap = (pkgs.python38Full.withPackages (ps: with ps; (fn.pkgFilter config.machine.pkgsets.python3.pkgs)));
|
2020-03-27 13:32:33 +01:00
|
|
|
config.machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [
|
2019-10-23 03:44:17 +02:00
|
|
|
GitPython
|
|
|
|
bpython
|
|
|
|
configparser
|
|
|
|
emoji
|
|
|
|
epc
|
|
|
|
flake8
|
|
|
|
genanki
|
|
|
|
mypy
|
|
|
|
numpy
|
|
|
|
opencv3
|
|
|
|
paho-mqtt
|
|
|
|
pep8
|
|
|
|
pillow
|
|
|
|
pip
|
|
|
|
plotly
|
|
|
|
pyflakes
|
|
|
|
pygame pygame_sdl2
|
|
|
|
pylama
|
2020-07-01 14:45:32 +02:00
|
|
|
pylint toml
|
2019-10-23 03:44:17 +02:00
|
|
|
pyopengl
|
|
|
|
pyproj
|
|
|
|
pytest
|
|
|
|
requests
|
|
|
|
schedule
|
|
|
|
scipy
|
|
|
|
selenium
|
|
|
|
telegram
|
|
|
|
tkinter
|
|
|
|
toolz
|
|
|
|
virtualenv
|
|
|
|
xdot
|
|
|
|
];
|
|
|
|
}
|