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

108 lines
2.1 KiB
Nix
Raw Normal View History

2018-04-11 23:43:43 +01:00
{ lib
, python
2018-04-11 23:43:43 +01:00
, buildPythonPackage
, fetchpatch
2018-04-11 23:43:43 +01:00
, fetchPypi
, isPyPy
, R
, rWrapper
, rPackages
2018-04-11 23:43:43 +01:00
, pcre
, lzma
, bzip2
, zlib
, icu
, ipython
2018-04-11 23:43:43 +01:00
, jinja2
, pytz
, pandas
, numpy
, cffi
, tzlocal
, simplegeneric
2018-04-11 23:43:43 +01:00
, pytest
, extraRPackages ? []
2018-04-11 23:43:43 +01:00
}:
buildPythonPackage rec {
2020-03-17 10:54:37 +00:00
version = "3.2.6";
2018-04-11 23:43:43 +01:00
pname = "rpy2";
2018-04-11 23:43:43 +01:00
disabled = isPyPy;
src = fetchPypi {
inherit version pname;
2020-03-17 10:54:37 +00:00
sha256 = "1p990cqx3p2pd1rc9wn66m56wahaq8dlr88frz49vb7nv4zw4a8q";
2018-04-11 23:43:43 +01:00
};
2018-04-11 23:43:43 +01:00
buildInputs = [
R
pcre
lzma
bzip2
zlib
icu
# is in the upstream `requires` although it shouldn't be -- this is easier than patching it away
pytest
] ++ (with rPackages; [
# packages expected by the test framework
ggplot2
dplyr
RSQLite
broom
DBI
dbplyr
hexbin
lme4
tidyr
]) ++ extraRPackages ++ rWrapper.recommendedPackages;
checkPhase = ''
pytest
'';
nativeBuildInputs = [
R # needed at setup time to detect R_HOME (alternatively set R_HOME explicitly)
];
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.
./rpy2-3.x-r-libs-site.patch
# pandas 1.x compatibility, already merged upstream
# https://github.com/rpy2/rpy2/issues/636
(fetchpatch {
name = "pandas-1.x.patch";
url = "https://github.com/rpy2/rpy2/commit/fbd060e364b70012e8d26cc74df04ee53f769379.patch";
sha256 = "19rdqydwjmqg25ibmsbx7lggrr9fsyjn283zgvz1wj4iyfjwp1za";
})
2018-04-11 23:43:43 +01:00
];
postPatch = ''
substituteInPlace 'rpy2/rinterface_lib/embedded.py' --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE"
'';
2018-04-11 23:43:43 +01:00
propagatedBuildInputs = [
ipython
2018-04-11 23:43:43 +01:00
jinja2
pytz
pandas
numpy
cffi
tzlocal
simplegeneric
2018-04-11 23:43:43 +01:00
];
checkInputs = [
pytest
];
2018-04-11 23:43:43 +01:00
meta = {
homepage = "http://rpy.sourceforge.net/rpy2";
2018-04-11 23:43:43 +01:00
description = "Python interface to R";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
2018-04-11 23:43:43 +01:00
maintainers = with lib.maintainers; [ joelmo ];
};
}