nixpkgs/pkgs/development/python-modules/pythonnet/default.nix

101 lines
2.1 KiB
Nix
Raw Normal View History

2018-02-05 21:58:25 +00:00
{ lib
, fetchPypi
, fetchNuGet
, buildPythonPackage
, pytestCheckHook
2018-02-05 21:58:25 +00:00
, pycparser
, psutil
, pkg-config
2018-02-05 21:58:25 +00:00
, dotnetbuildhelpers
, clang
, glib
2018-02-05 21:58:25 +00:00
, mono
}:
let
dotnetPkgs = [
(fetchNuGet {
baseName = "UnmanagedExports";
version = "1.2.7";
sha256 = "0bfrhpmq556p0swd9ssapw4f2aafmgp930jgf00sy89hzg2bfijf";
outputFiles = [ "*" ];
})
(fetchNuGet {
baseName = "NUnit";
version = "3.12.0";
sha256 = "1880j2xwavi8f28vxan3hyvdnph4nlh5sbmh285s4lc9l0b7bdk2";
outputFiles = [ "*" ];
})
(fetchNuGet {
baseName = "System.ValueTuple";
version = "4.5.0";
sha256 = "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy";
outputFiles = [ "*" ];
})
];
2018-02-05 21:58:25 +00:00
in
buildPythonPackage rec {
pname = "pythonnet";
version = "2.5.2";
2018-02-05 21:58:25 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1qzdc6jd7i9j7p6bcihnr98y005gv1358xqdr1plpbpnl6078a5p";
2018-02-05 21:58:25 +00:00
};
postPatch = ''
substituteInPlace setup.py --replace 'self._install_packages()' '#self._install_packages()'
'';
preConfigure = ''
[ -z "''${dontPlacateNuget-}" ] && placate-nuget.sh
[ -z "''${dontPlacatePaket-}" ] && placate-paket.sh
2018-02-05 21:58:25 +00:00
'';
nativeBuildInputs = [
pycparser
pkg-config
2018-02-05 21:58:25 +00:00
dotnetbuildhelpers
clang
mono
] ++ dotnetPkgs;
2018-02-05 21:58:25 +00:00
buildInputs = [
glib
2018-02-05 21:58:25 +00:00
mono
];
checkInputs = [
pytestCheckHook
psutil # needed for memory leak tests
2018-02-05 21:58:25 +00:00
];
preBuild = ''
rm -rf packages
mkdir packages
${builtins.concatStringsSep "\n" (
builtins.map (
x: ''ln -s ${x}/lib/dotnet/${x.baseName} ./packages/${x.baseName}.${x.version}''
) dotnetPkgs)}
# Setting TERM=xterm fixes an issue with terminfo in mono: System.Exception: Magic number is wrong: 542
export TERM=xterm
2018-02-05 21:58:25 +00:00
'';
meta = with lib; {
description = ".Net and Mono integration for Python";
homepage = "https://pythonnet.github.io";
2018-02-05 21:58:25 +00:00
license = licenses.mit;
# <https://github.com/pythonnet/pythonnet/issues/898>
badPlatforms = [ "aarch64-linux" ];
2018-02-05 21:58:25 +00:00
maintainers = with maintainers; [ jraygauthier ];
};
}