pythonPackages.pyqtgraph: refactor move to python-modules
This commit is contained in:
parent
52ea2961d5
commit
1597082a09
31
pkgs/development/python-modules/pyqtgraph/default.nix
Normal file
31
pkgs/development/python-modules/pyqtgraph/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, scipy
|
||||||
|
, numpy
|
||||||
|
, pyqt4
|
||||||
|
, pyopengl
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyqtgraph";
|
||||||
|
version = "0.9.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "188pcxf3sxxjf0aipjn820lx2rf9f42zzp0sibmcl90955a3ipf1";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ scipy numpy pyqt4 pyopengl ];
|
||||||
|
|
||||||
|
doCheck = false; # "PyQtGraph requires either PyQt4 or PySide; neither package could be imported."
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Scientific Graphics and GUI Library for Python";
|
||||||
|
homepage = http://www.pyqtgraph.org/;
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ koral ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3390,27 +3390,7 @@ in {
|
|||||||
|
|
||||||
pyptlib = callPackage ../development/python-modules/pyptlib { };
|
pyptlib = callPackage ../development/python-modules/pyptlib { };
|
||||||
|
|
||||||
pyqtgraph = buildPythonPackage rec {
|
pyqtgraph = callPackage ../development/python-modules/pyqtgraph { };
|
||||||
name = "pyqtgraph-${version}";
|
|
||||||
version = "0.9.10";
|
|
||||||
|
|
||||||
doCheck = false; # "PyQtGraph requires either PyQt4 or PySide; neither package could be imported."
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/p/pyqtgraph/${name}.tar.gz";
|
|
||||||
sha256 = "188pcxf3sxxjf0aipjn820lx2rf9f42zzp0sibmcl90955a3ipf1";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ scipy numpy pyqt4 pyopengl ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Scientific Graphics and GUI Library for Python";
|
|
||||||
homepage = http://www.pyqtgraph.org/;
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ koral ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
PyStemmer = callPackage ../development/python-modules/pystemmer {};
|
PyStemmer = callPackage ../development/python-modules/pystemmer {};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user