mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
63b39af496
- make sure libreadline is found at runtime - make sure python libraries are found at runtime - add libraries necessary to pass the testsuite and standard libraries
105 lines
2.4 KiB
Nix
105 lines
2.4 KiB
Nix
{ lib
|
|
, python
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPyPy
|
|
, isPy27
|
|
, readline
|
|
, R
|
|
, rWrapper
|
|
, rPackages
|
|
, pcre
|
|
, lzma
|
|
, bzip2
|
|
, zlib
|
|
, icu
|
|
, singledispatch
|
|
, six
|
|
, jinja2
|
|
, pytz
|
|
, numpy
|
|
, pytest
|
|
, mock
|
|
, extraRPackages ? []
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
version = if isPy27 then
|
|
"2.8.6" # python2 support dropped in 2.9.x
|
|
else
|
|
"2.9.4";
|
|
pname = "rpy2";
|
|
disabled = isPyPy;
|
|
src = fetchPypi {
|
|
inherit version pname;
|
|
sha256 = if isPy27 then
|
|
"162zki5c1apgv6qbafi7n66y4hgpgp43xag7q75qb6kv99ri6k80" # 2.8.x
|
|
else
|
|
"0bl1d2qhavmlrvalir9hmkjh74w21vzkvc2sg3cbb162s10zfmxy"; # 2.9.x
|
|
};
|
|
buildInputs = [
|
|
readline
|
|
R
|
|
pcre
|
|
lzma
|
|
bzip2
|
|
zlib
|
|
icu
|
|
] ++ (with rPackages; [
|
|
# packages expected by the test framework
|
|
ggplot2
|
|
dplyr
|
|
RSQLite
|
|
broom
|
|
DBI
|
|
dbplyr
|
|
hexbin
|
|
lme4
|
|
tidyr
|
|
]) ++ extraRPackages ++ rWrapper.recommendedPackages;
|
|
|
|
patches = [
|
|
# R_LIBS_SITE is used by the nix r package to point to the installed R libraries.
|
|
# This patch sets R_LIBS_SITE when rpy2 is imported.
|
|
./r-libs-site.patch
|
|
];
|
|
postPatch = ''
|
|
substituteInPlace rpy/rinterface/__init__.py --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
singledispatch
|
|
six
|
|
jinja2
|
|
pytz
|
|
numpy
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest
|
|
mock
|
|
];
|
|
# One remaining test failure caused by different unicode encoding.
|
|
# https://bitbucket.org/rpy2/rpy2/issues/488
|
|
doCheck = false;
|
|
checkPhase = ''
|
|
${python.interpreter} -m 'rpy2.tests'
|
|
'';
|
|
|
|
# For some reason libreadline.so is not found. Curiously `ldd _rinterface.so | grep readline` shows two readline entries:
|
|
# libreadline.so.6 => not found
|
|
# libreadline.so.6 => /nix/store/z2zhmrg6jcrn5iq2779mav0nnq4vm2q6-readline-6.3p08/lib/libreadline.so.6 (0x00007f333ac43000)
|
|
# There must be a better way to fix this, but I don't know it.
|
|
postFixup = ''
|
|
patchelf --add-needed ${readline}/lib/libreadline.so "$out/${python.sitePackages}/rpy2/rinterface/"_rinterface*.so
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://rpy.sourceforge.net/rpy2;
|
|
description = "Python interface to R";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ joelmo ];
|
|
};
|
|
}
|