octave.pkgs.dataframe: init at 1.2.0

This commit is contained in:
Karl Hallsby 2021-01-06 10:49:38 -06:00 committed by Doron Behar
parent abd0c2290a
commit a2365751bc
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ buildOctavePackage
, lib
, fetchurl
}:
buildOctavePackage rec {
pname = "dataframe";
version = "1.2.0";
src = fetchurl {
url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
sha256 = "10ara084gkb7d5vxv9qv7zpj8b4mm5y06nccrdy3skw5nfbb4djx";
};
meta = with lib; {
homepage = "https://octave.sourceforge.io/dataframe/index.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ KarlJoad ];
description = "Data manipulation toolbox similar to R data.frame";
};
}

View file

@ -73,6 +73,8 @@ makeScope newScope (self:
database = callPackage ../development/octave-modules/database { };
dataframe = callPackage ../development/octave-modules/dataframe { };
general = callPackage ../development/octave-modules/general {
nettle = pkgs.nettle;
};