blob: 1bd1dad2e575640b698afec30292b4ad0e0c1786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
pkgs:
pkgs.mkShell {
packages = with pkgs; [
(python3.withPackages (pypkgs:
with pypkgs; [
ipython
pytest
pytest-html
pytest-tap
coverage
python-lsp-black
pylint
pydocstyle
mypy
pygraphviz
matplotlib
python-gitlab
PyGithub
schema
jinja2
ruamel-yaml
msgpack
urllib3
influxdb-client
#psycopg
paho-mqtt
humanize
rich
pygobject3
pyserial
pylibftdi
pylxd
selenium
]))
geckodriver
chromedriver
gobject-introspection
gtk3
gtk4
];
meta.platforms = pkgs.lib.platforms.linux;
}
|