pythonPackages.cvxopt: mark as broken on darwin

See https://github.com/NixOS/nixpkgs/pull/49994#issuecomment-437589336.
This commit is contained in:
Timo Kaufmann 2018-11-20 13:18:03 +01:00
parent 5b8c4b0646
commit 5e3af1255b

View File

@ -1,4 +1,5 @@
{ lib { stdenv
, lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPyPy , isPyPy
@ -50,7 +51,7 @@ buildPythonPackage rec {
${python.interpreter} -m unittest discover -s tests ${python.interpreter} -m unittest discover -s tests
''; '';
meta = { meta = with lib; {
homepage = http://cvxopt.org/; homepage = http://cvxopt.org/;
description = "Python Software for Convex Optimization"; description = "Python Software for Convex Optimization";
longDescription = '' longDescription = ''
@ -63,7 +64,8 @@ buildPythonPackage rec {
standard library and on the strengths of Python as a high-level standard library and on the strengths of Python as a high-level
programming language. programming language.
''; '';
maintainers = with lib.maintainers; [ edwtjo ]; maintainers = with maintainers; [ edwtjo ];
license = lib.licenses.gpl3Plus; broken = stdenv.targetPlatform.isDarwin;
license = licenses.gpl3Plus;
}; };
} }