mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.rpy3-robjects: fix build
This commit is contained in:
parent
4fcfe8246e
commit
3d7bc0a86f
1 changed files with 9 additions and 2 deletions
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchurl,
|
||||
|
|
@ -11,6 +10,7 @@
|
|||
jinja2,
|
||||
numpy,
|
||||
pandas,
|
||||
setuptools,
|
||||
tzlocal,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
|
@ -42,7 +42,9 @@ buildPythonPackage rec {
|
|||
R # needed at setup time to detect R_HOME (alternatively set R_HOME explicitly)
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
ipython
|
||||
jinja2
|
||||
numpy
|
||||
|
|
@ -58,6 +60,11 @@ buildPythonPackage rec {
|
|||
"-Wignore::pytest.PytestRemovedIn9Warning"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# panda 3.0 type mismatch
|
||||
"test_ri2pandas"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://rpy2.github.io/";
|
||||
description = "Python interface to R";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue