forked from M-Labs/nix-scripts
38 lines
941 B
Nix
38 lines
941 B
Nix
{ pkgs, artiq-full }:
|
|
let
|
|
matplotlib-qt = (pkgs.python3Packages.matplotlib.override { enableQt = true; });
|
|
in
|
|
{
|
|
artiq-example-user-env = pkgs.runCommand "artiq-example-user-env" {
|
|
buildInputs = [
|
|
(pkgs.python3.withPackages(ps: [
|
|
artiq-full.artiq
|
|
artiq-full.artiq-comtools
|
|
artiq-full.wand
|
|
artiq-full.flake8-artiq
|
|
artiq-full.lda
|
|
artiq-full.korad_ka3005p
|
|
artiq-full.novatech409b
|
|
artiq-full.thorlabs_tcube
|
|
artiq-full.artiq-board-kc705-nist_clock
|
|
artiq-full.artiq-board-kasli-oregon
|
|
ps.paramiko
|
|
ps.pandas
|
|
ps.numpy
|
|
ps.scipy
|
|
ps.numba
|
|
ps.bokeh
|
|
matplotlib-qt
|
|
(ps.cirq.override { matplotlib = matplotlib-qt; })
|
|
# qiskit does not work with matplotlib-qt
|
|
#ps.qiskit
|
|
]))
|
|
|
|
artiq-full.openocd
|
|
pkgs.gtkwave
|
|
pkgs.spyder
|
|
pkgs.R
|
|
];
|
|
} "touch $out";
|
|
}
|