blob: 7e843ad060fa3eab828854050026b5897a64ad78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
stdenv,
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
rpy2-rinterface,
rpy2-robjects,
pytestCheckHook,
}:
buildPythonPackage rec {
version = "3.6.4";
pyproject = true;
pname = "rpy2";
disabled = isPyPy;
src = fetchPypi {
inherit version pname;
hash = "sha256-ok6N2lxf+MvSuOvRzPbxpaCldmI3AM+R4szpjUGnn9M=";
};
propagatedBuildInputs = [
rpy2-rinterface
rpy2-robjects
];
pythonImportsCheck = [
"rpy2"
];
meta = {
homepage = "https://rpy2.github.io/";
description = "Python interface to R";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ joelmo ];
};
}
|