2021-01-03 23:01:42 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2018-11-27 17:24:37 +00:00
|
|
|
, python
|
2018-04-11 23:43:43 +01:00
|
|
|
, buildPythonPackage
|
2020-03-17 10:52:01 +00:00
|
|
|
, fetchpatch
|
2018-04-11 23:43:43 +01:00
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
|
|
|
, R
|
2018-11-27 17:24:37 +00:00
|
|
|
, rWrapper
|
|
|
|
, rPackages
|
2018-04-11 23:43:43 +01:00
|
|
|
, pcre
|
|
|
|
, lzma
|
|
|
|
, bzip2
|
|
|
|
, zlib
|
|
|
|
, icu
|
2019-11-28 19:58:59 +00:00
|
|
|
, ipython
|
2018-04-11 23:43:43 +01:00
|
|
|
, jinja2
|
2018-11-27 17:24:37 +00:00
|
|
|
, pytz
|
2019-11-28 19:58:59 +00:00
|
|
|
, pandas
|
2018-11-27 17:24:37 +00:00
|
|
|
, numpy
|
2019-11-28 19:58:59 +00:00
|
|
|
, cffi
|
|
|
|
, tzlocal
|
|
|
|
, simplegeneric
|
2021-01-03 23:01:42 +00:00
|
|
|
, pytestCheckHook
|
2018-11-27 17:24:37 +00:00
|
|
|
, extraRPackages ? []
|
2018-04-11 23:43:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2021-01-03 23:01:42 +00:00
|
|
|
version = "3.4.1";
|
2018-04-11 23:43:43 +01:00
|
|
|
pname = "rpy2";
|
2019-11-28 19:58:59 +00:00
|
|
|
|
2018-04-11 23:43:43 +01:00
|
|
|
disabled = isPyPy;
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version pname;
|
2021-01-03 23:01:42 +00:00
|
|
|
sha256 = "1qnjjlgh6i31z45jykwd29n1336gq678fn9zw7gh0rv5d6sn0hv4";
|
2018-04-11 23:43:43 +01:00
|
|
|
};
|
2019-11-28 19:58:59 +00:00
|
|
|
|
2021-01-03 23:01:42 +00:00
|
|
|
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
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace 'rpy2/rinterface_lib/embedded.py' --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE"
|
|
|
|
substituteInPlace 'requirements.txt' --replace 'pytest' ""
|
|
|
|
'';
|
|
|
|
|
2018-04-11 23:43:43 +01:00
|
|
|
buildInputs = [
|
|
|
|
pcre
|
|
|
|
lzma
|
|
|
|
bzip2
|
|
|
|
zlib
|
|
|
|
icu
|
2018-11-27 17:24:37 +00:00
|
|
|
] ++ (with rPackages; [
|
|
|
|
# packages expected by the test framework
|
|
|
|
ggplot2
|
|
|
|
dplyr
|
|
|
|
RSQLite
|
|
|
|
broom
|
|
|
|
DBI
|
|
|
|
dbplyr
|
|
|
|
hexbin
|
2020-10-22 07:45:26 +01:00
|
|
|
lazyeval
|
2018-11-27 17:24:37 +00:00
|
|
|
lme4
|
|
|
|
tidyr
|
|
|
|
]) ++ extraRPackages ++ rWrapper.recommendedPackages;
|
|
|
|
|
2019-03-03 12:24:43 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
R # needed at setup time to detect R_HOME (alternatively set R_HOME explicitly)
|
|
|
|
];
|
|
|
|
|
2018-04-11 23:43:43 +01:00
|
|
|
propagatedBuildInputs = [
|
2019-11-28 19:58:59 +00:00
|
|
|
ipython
|
2018-04-11 23:43:43 +01:00
|
|
|
jinja2
|
2018-11-27 17:24:37 +00:00
|
|
|
pytz
|
2019-11-28 19:58:59 +00:00
|
|
|
pandas
|
2018-11-27 17:24:37 +00:00
|
|
|
numpy
|
2019-11-28 19:58:59 +00:00
|
|
|
cffi
|
|
|
|
tzlocal
|
|
|
|
simplegeneric
|
2018-04-11 23:43:43 +01:00
|
|
|
];
|
2018-11-27 17:24:37 +00:00
|
|
|
|
2021-01-03 23:01:42 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2018-11-27 17:24:37 +00:00
|
|
|
checkInputs = [
|
2021-01-03 23:01:42 +00:00
|
|
|
pytestCheckHook
|
2018-11-27 17:24:37 +00:00
|
|
|
];
|
2018-04-11 23:43:43 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-10-22 07:45:26 +01:00
|
|
|
homepage = "https://rpy2.github.io/";
|
2018-04-11 23:43:43 +01:00
|
|
|
description = "Python interface to R";
|
|
|
|
license = lib.licenses.gpl2Plus;
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2018-04-11 23:43:43 +01:00
|
|
|
maintainers = with lib.maintainers; [ joelmo ];
|
|
|
|
};
|
|
|
|
}
|