rpy2: unbreak build
This commit is contained in:
parent
19a6f0e02b
commit
2dcb1026a3
54
pkgs/development/python-modules/rpy2/default.nix
Normal file
54
pkgs/development/python-modules/rpy2/default.nix
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPyPy
|
||||||
|
, readline
|
||||||
|
, R
|
||||||
|
, pcre
|
||||||
|
, lzma
|
||||||
|
, bzip2
|
||||||
|
, zlib
|
||||||
|
, icu
|
||||||
|
, singledispatch
|
||||||
|
, six
|
||||||
|
, jinja2
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
version = "2.8.2";
|
||||||
|
pname = "rpy2";
|
||||||
|
disabled = isPyPy;
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit version pname;
|
||||||
|
sha256 = "0k5jp6n1lfab7a6r5568aq31hg4fgf2cwy0hzvf3chp6yhyk26ic";
|
||||||
|
};
|
||||||
|
buildInputs = [
|
||||||
|
readline
|
||||||
|
R
|
||||||
|
pcre
|
||||||
|
lzma
|
||||||
|
bzip2
|
||||||
|
zlib
|
||||||
|
icu
|
||||||
|
];
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
singledispatch
|
||||||
|
six
|
||||||
|
jinja2
|
||||||
|
];
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
# Tests fail with `assert not _relpath.startswith('..'), "Path must be within the project"`
|
||||||
|
# in the unittest `loader.py`. I don't know what causes this.
|
||||||
|
doCheck = false;
|
||||||
|
# without this tests fail when looking for libreadline.so
|
||||||
|
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://rpy.sourceforge.net/rpy2;
|
||||||
|
description = "Python interface to R";
|
||||||
|
license = lib.licenses.gpl2Plus;
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
maintainers = with lib.maintainers; [ joelmo ];
|
||||||
|
};
|
||||||
|
}
|
@ -2975,7 +2975,6 @@ in {
|
|||||||
wrapProgram $out/bin/gtimelog \
|
wrapProgram $out/bin/gtimelog \
|
||||||
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
||||||
--prefix LD_LIBRARY_PATH ":" "${pkgs.gtk3.out}/lib" \
|
--prefix LD_LIBRARY_PATH ":" "${pkgs.gtk3.out}/lib" \
|
||||||
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
@ -12490,28 +12489,7 @@ in {
|
|||||||
|
|
||||||
rpmfluff = callPackage ../development/python-modules/rpmfluff {};
|
rpmfluff = callPackage ../development/python-modules/rpmfluff {};
|
||||||
|
|
||||||
rpy2 = buildPythonPackage rec {
|
rpy2 = callPackage ../development/python-modules/rpy2 {};
|
||||||
name = "rpy2-2.8.2";
|
|
||||||
disabled = isPyPy;
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/r/rpy2/${name}.tar.gz";
|
|
||||||
sha256 = "2c1a313df4e64236dcfe1078ce847b8e3c180656c894928d3a4b391aacb9b24c";
|
|
||||||
};
|
|
||||||
buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ];
|
|
||||||
propagatedBuildInputs = with self; [ singledispatch six ];
|
|
||||||
|
|
||||||
# According to manual this is how the testsuite should be invoked
|
|
||||||
checkPhase = ''
|
|
||||||
${python.interpreter} -m rpy2.tests
|
|
||||||
'';
|
|
||||||
meta = {
|
|
||||||
homepage = http://rpy.sourceforge.net/rpy2;
|
|
||||||
description = "Python interface to R";
|
|
||||||
license = licenses.gpl2Plus;
|
|
||||||
maintainers = with maintainers; [ joelmo ];
|
|
||||||
broken = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
rpyc = buildPythonPackage rec {
|
rpyc = buildPythonPackage rec {
|
||||||
name = "rpyc-${version}";
|
name = "rpyc-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user