about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cvxopt
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-11-20 13:18:03 +0100
committerTimo Kaufmann <timokau@zoho.com>2018-11-20 13:20:29 +0100
commit5e3af1255b032e48cb6f18398bac3434658fa151 (patch)
tree4e90acd9d707c7147665deabcaf7422bb21852e4 /pkgs/development/python-modules/cvxopt
parent5b8c4b0646db59c0ce798aaccf1fd11bb4be1141 (diff)
pythonPackages.cvxopt: mark as broken on darwin
See https://github.com/NixOS/nixpkgs/pull/49994#issuecomment-437589336.
Diffstat (limited to 'pkgs/development/python-modules/cvxopt')
-rw-r--r--pkgs/development/python-modules/cvxopt/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cvxopt/default.nix b/pkgs/development/python-modules/cvxopt/default.nix
index 067a397126884..2411e8251a0d8 100644
--- a/pkgs/development/python-modules/cvxopt/default.nix
+++ b/pkgs/development/python-modules/cvxopt/default.nix
@@ -1,4 +1,5 @@
-{ lib
+{ stdenv
+, lib
 , buildPythonPackage
 , fetchPypi
 , isPyPy
@@ -50,7 +51,7 @@ buildPythonPackage rec {
     ${python.interpreter} -m unittest discover -s tests
   '';
 
-  meta = {
+  meta = with lib; {
     homepage = http://cvxopt.org/;
     description = "Python Software for Convex Optimization";
     longDescription = ''
@@ -63,7 +64,8 @@ buildPythonPackage rec {
       standard library and on the strengths of Python as a high-level
       programming language.
     '';
-    maintainers = with lib.maintainers; [ edwtjo ];
-    license = lib.licenses.gpl3Plus;
+    maintainers = with maintainers; [ edwtjo ];
+    broken = stdenv.targetPlatform.isDarwin;
+    license = licenses.gpl3Plus;
   };
 }