mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Add gurobipy for python2.7 on darwin.
This commit is contained in:
parent
6d7ceedaf9
commit
3dfbf51a25
3 changed files with 41 additions and 1 deletions
|
@ -201,7 +201,7 @@ in stdenv.mkDerivation {
|
|||
passthru = let
|
||||
pythonPackages = callPackage ../../../../../top-level/python-packages.nix {python=self; overrides=packageOverrides;};
|
||||
in rec {
|
||||
inherit libPrefix sitePackages x11Support hasDistutilsCxxPatch;
|
||||
inherit libPrefix sitePackages x11Support hasDistutilsCxxPatch ucsEncoding;
|
||||
executable = libPrefix;
|
||||
buildEnv = callPackage ../../wrapper.nix { python = self; inherit (pythonPackages) requiredPythonModules; };
|
||||
withPackages = import ../../with-packages.nix { inherit buildEnv pythonPackages;};
|
||||
|
|
34
pkgs/development/python-modules/gurobipy/darwin.nix
Normal file
34
pkgs/development/python-modules/gurobipy/darwin.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchurl, python, xar, cpio, cctools, insert_dylib }:
|
||||
assert python.isPy27 && python.ucsEncoding == 2;
|
||||
stdenv.mkDerivation
|
||||
{ name = "gurobipy-7.0.2";
|
||||
src = fetchurl
|
||||
{ url = "http://packages.gurobi.com/7.0/gurobi7.0.2_mac64.pkg";
|
||||
sha256 = "14dpxas6gx02kfb28i0fh68p1z4sbjmwg8hp8h5ch6c701h260mg";
|
||||
};
|
||||
buildInputs = [ xar cpio cctools insert_dylib ];
|
||||
buildCommand =
|
||||
''
|
||||
# Unpack
|
||||
xar -xf $src
|
||||
zcat gurobi*mac64tar.pkg/Payload | cpio -i
|
||||
tar xf gurobi*_mac64.tar.gz
|
||||
|
||||
# Install
|
||||
cd gurobi*/mac64
|
||||
mkdir -p $out/lib/python2.7/site-packages
|
||||
mv lib/python2.7/gurobipy $out/lib/python2.7/site-packages
|
||||
mv lib/lib*.so $out/lib
|
||||
|
||||
# Fixup
|
||||
install_name_tool -change \
|
||||
/System/Library/Frameworks/Python.framework/Versions/2.7/Python \
|
||||
${python}/lib/libpython2.7.dylib \
|
||||
$out/lib/python2.7/site-packages/gurobipy/gurobipy.so
|
||||
install_name_tool -change libgurobi70.so \
|
||||
$out/lib/libgurobi70.so \
|
||||
$out/lib/python2.7/site-packages/gurobipy/gurobipy.so
|
||||
insert_dylib --inplace $out/lib/libaes70.so \
|
||||
$out/lib/python2.7/site-packages/gurobipy/gurobipy.so
|
||||
'';
|
||||
}
|
|
@ -5630,6 +5630,12 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
gurobipy = if stdenv.system == "x86_64-darwin"
|
||||
then callPackage ../development/python-modules/gurobipy/darwin.nix
|
||||
{ inherit (pkgs.darwin) cctools insert_dylib;
|
||||
}
|
||||
else throw "gurobipy not yet supported on ${stdenv.system}";
|
||||
|
||||
helper = buildPythonPackage rec {
|
||||
pname = "helper";
|
||||
version = "2.4.1";
|
||||
|
|
Loading…
Reference in a new issue