artiq-fast: add jsonschema dependency to artiq

Fixes issue #43
pull/44/head
Astro 2021-02-23 00:39:52 +01:00
parent a57b927418
commit 1d9726fe2f
2 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ let
"pygit2"
"python-levenshtein"
"sipyco"
"jsonschema"
];
extraYaml =
''

View File

@ -11,7 +11,7 @@ python3Packages.buildPythonPackage rec {
propagatedBuildInputs = [ binutils-or1k llvm-or1k llvmlite-artiq ]
++ (lib.lists.optionals (lib.strings.versionAtLeast version "6.0") [ binutils-arm ])
++ (with pythonDeps; [ sipyco pyqtgraph-qt5 pythonparser ])
++ (with python3Packages; [ pygit2 numpy dateutil scipy prettytable pyserial python-Levenshtein h5py pyqt5 ])
++ (with python3Packages; [ pygit2 numpy dateutil jsonschema scipy prettytable pyserial python-Levenshtein h5py pyqt5 ])
++ [(if (lib.strings.versionAtLeast version "6.0") then pythonDeps.qasync else python3Packages.quamash)];
dontWrapQtApps = true;