mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
rpy2: initial
This commit is contained in:
parent
f9f55b4147
commit
8c1dfabdce
1 changed files with 16 additions and 0 deletions
|
@ -10955,6 +10955,22 @@ let
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
rpy2 = buildPythonPackage rec {
|
||||||
|
name = "rpy2-2.5.6";
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/r/rpy2/${name}.tar.gz";
|
||||||
|
md5 = "a36e758b633ce6aec6a5f450bfee980f";
|
||||||
|
};
|
||||||
|
buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ];
|
||||||
|
propagatedBuildInputs = [ self.singledispatch ];
|
||||||
|
meta = {
|
||||||
|
homepage = http://rpy.sourceforge.net/rpy2;
|
||||||
|
description = "Python interface to R";
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.joelmo ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
rpyc = buildPythonPackage rec {
|
rpyc = buildPythonPackage rec {
|
||||||
name = "rpyc-${version}";
|
name = "rpyc-${version}";
|
||||||
version = "3.3.0";
|
version = "3.3.0";
|
||||||
|
|
Loading…
Reference in a new issue