nixpkgs/pkgs/development/python-modules/gurobipy/linux.nix
Axel Forsman d8984f8522
gurobi: 8.1.0 -> 9.1.2 (#120525)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-18 10:43:39 +02:00

29 lines
603 B
Nix

{ lib, buildPythonPackage, python, gurobi }:
buildPythonPackage {
pname = "gurobipy";
version = "9.1.2";
src = gurobi.src;
setSourceRoot = "sourceRoot=$(echo gurobi*/*64)";
patches = [ ./no-clever-setup.patch ];
postInstall = ''
mv lib/libgurobi*.so* $out/lib
'';
postFixup = ''
patchelf --set-rpath $out/lib \
$out/lib/${python.libPrefix}/site-packages/gurobipy/gurobipy.so
'';
meta = with lib; {
description = "The Gurobi Python interface";
homepage = "https://www.gurobi.com";
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
};
}