nix: upgrade pyqtgraph and switch it to Qt5

This commit is contained in:
Sebastien Bourdeauducq 2018-08-16 09:53:15 +08:00
parent 477dcdbad4
commit c3759379bd
1 changed files with 14 additions and 1 deletions

View File

@ -66,6 +66,19 @@ quamash = python3Packages.buildPythonPackage rec {
doCheck = false;
};
pyqtgraph-qt5 = python3Packages.buildPythonPackage rec {
name = "pyqtgraph_qt5-${version}";
version = "0.10.0";
doCheck = false;
src = fetchFromGitHub {
owner = "pyqtgraph";
repo = "pyqtgraph";
rev = "1426e334e1d20542400d77c72c132b04c6d17ddb";
sha256 = "1079haxyr316jf0wpirxdj0ry6j8mr16cqr0dyyrd5cnxwl7zssh";
};
propagatedBuildInputs = with python3Packages; [ scipy numpy pyqt5 pyopengl ];
};
lit = python3Packages.buildPythonPackage rec {
name = "lit";
version = "262719";
@ -85,7 +98,7 @@ python3Packages.buildPythonPackage rec {
name = "artiq-${version}";
src = ./..;
buildInputs = with python3Packages; [ lit outputcheck ];
propagatedBuildInputs = with python3Packages; [ llvm-or1k llvmlite levenshtein pyqtgraph aiohttp pygit2 pythonparser numpy dateutil quamash scipy prettytable pyserial asyncserial h5py cython regex qt5Full pyqt5 ];
propagatedBuildInputs = with python3Packages; [ llvm-or1k llvmlite levenshtein pyqtgraph-qt5 aiohttp pygit2 pythonparser numpy dateutil quamash scipy prettytable pyserial asyncserial h5py cython regex qt5Full pyqt5 ];
doCheck = false;
meta = with stdenv.lib; {
description = "";