17 buildPythonPackage rec {
22 disabled = pythonOlder "3.9";
24 src = fetchFromGitHub {
27 rev = "refs/tags/v${version}";
28 hash = "sha256-M7OWDo3mEEOYtjIpzPIpzPMBtv2TZJKJkSfHczZYS8Y=";
32 substituteInPlace setup.py \
33 --replace '"pytest-runner"' ""
41 propagatedBuildInputs = [
45 ] ++ (with rPackages; [ reticulate ]);
54 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${R}/lib/R/lib
58 pythonImportsCheck = [ "rchitect" ];
61 description = "Interoperate R with Python";
62 homepage = "https://github.com/randy3k/rchitect";
63 changelog = "https://github.com/randy3k/rchitect/blob/v${version}/CHANGELOG.md";
64 license = licenses.mit;
65 maintainers = with maintainers; [ savyajha ];