pythonPackages.cvxopt: added package
This commit is contained in:
parent
a1cf6de6c8
commit
150672072a
@ -775,6 +775,25 @@ let
|
|||||||
propagatedBuildInputs = with pythonPackages; [ iowait psutil pyzmq tornado mock ];
|
propagatedBuildInputs = with pythonPackages; [ iowait psutil pyzmq tornado mock ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cvxopt = buildPythonPackage rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
pname = "cvxopt";
|
||||||
|
version = "1.1.7";
|
||||||
|
disabled = isPyPy;
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/c/${pname}/${name}.tar.gz";
|
||||||
|
sha256 = "f856ea2e9e2947abc1a6557625cc6b0e45228984f397a90c420b2f468dc4cb97";
|
||||||
|
};
|
||||||
|
doCheck = false;
|
||||||
|
buildInputs = with pkgs; [ liblapack blas ];
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://cvxopt.org/";
|
||||||
|
description = "Python Software for Convex Optimization";
|
||||||
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
|
licsense = licenses.gpl3Plus;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
iowait = buildPythonPackage rec {
|
iowait = buildPythonPackage rec {
|
||||||
name = "iowait-0.2";
|
name = "iowait-0.2";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user