pythonPackages.cvxopt: added package

This commit is contained in:
Edward Tjörnhammar 2014-10-12 09:24:45 +02:00
parent a1cf6de6c8
commit 150672072a
1 changed files with 21 additions and 2 deletions

View File

@ -775,6 +775,25 @@ let
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 {
name = "iowait-0.2";