14 buildPythonPackage rec {
17 format = "setuptools";
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
24 rev = "refs/tags/v${version}";
25 hash = "sha256-IVyYzf433m03RRfL5SmUOdaXFy0NHf/QuAdtUeUjIz0=";
29 substituteInPlace setup.py \
30 --replace '"pytest-runner"' ""
33 propagatedBuildInputs = [
37 ] ++ (with rPackages; [
48 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${R}/lib/R/lib
52 pythonImportsCheck = [ "rchitect" ];
55 description = "Interoperate R with Python";
56 homepage = "https://github.com/randy3k/rchitect";
57 changelog = "https://github.com/randy3k/rchitect/blob/v${version}/CHANGELOG.md";
58 license = licenses.mit;
59 maintainers = with maintainers; [ savyajha ];