forked from M-Labs/nix-scripts
example-user-env: matplotlib-qt issues
This commit is contained in:
parent
45f46f8901
commit
4d99f4884e
|
@ -1,4 +1,7 @@
|
||||||
{ pkgs, artiq-full }:
|
{ pkgs, artiq-full }:
|
||||||
|
let
|
||||||
|
matplotlib-qt = (pkgs.python3Packages.matplotlib.override { enableQt = true; });
|
||||||
|
in
|
||||||
{
|
{
|
||||||
artiq-example-user-env = pkgs.runCommand "artiq-example-user-env" {
|
artiq-example-user-env = pkgs.runCommand "artiq-example-user-env" {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -17,10 +20,11 @@
|
||||||
ps.numpy
|
ps.numpy
|
||||||
ps.scipy
|
ps.scipy
|
||||||
ps.numba
|
ps.numba
|
||||||
(ps.matplotlib.override { enableQt = true; })
|
|
||||||
ps.bokeh
|
ps.bokeh
|
||||||
ps.cirq
|
matplotlib-qt
|
||||||
ps.qiskit
|
(ps.cirq.override { matplotlib = matplotlib-qt; })
|
||||||
|
# qiskit does not work with matplotlib-qt
|
||||||
|
#ps.qiskit
|
||||||
]))
|
]))
|
||||||
|
|
||||||
artiq-full.openocd
|
artiq-full.openocd
|
||||||
|
|
Loading…
Reference in New Issue