lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.rpy2: 2.5.6 -> 2.8.2

readline issue still exists.

```
ImportError: libreadline.so.6: cannot open shared object file: No such
file or directory
```

+8 -3
+8 -3
pkgs/top-level/python-packages.nix
··· 20492 20492 }); 20493 20493 20494 20494 rpy2 = buildPythonPackage rec { 20495 - name = "rpy2-2.5.6"; 20495 + name = "rpy2-2.8.2"; 20496 20496 disabled = isPyPy; 20497 20497 src = pkgs.fetchurl { 20498 20498 url = "mirror://pypi/r/rpy2/${name}.tar.gz"; 20499 - sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06"; 20499 + sha256 = "2c1a313df4e64236dcfe1078ce847b8e3c180656c894928d3a4b391aacb9b24c"; 20500 20500 }; 20501 20501 buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ]; 20502 - propagatedBuildInputs = [ self.singledispatch ]; 20502 + propagatedBuildInputs = with self; [ singledispatch six ]; 20503 + 20504 + # According to manual this is how the testsuite should be invoked 20505 + checkPhase = '' 20506 + ${python.interpreter} -m rpy2.tests 20507 + ''; 20503 20508 meta = { 20504 20509 homepage = http://rpy.sourceforge.net/rpy2; 20505 20510 description = "Python interface to R";