python3.pkgs.datatable: init at 0.8.0

This commit is contained in:
Nikolay Amiantov 2019-06-03 18:12:25 +03:00
parent c5ed8dd610
commit 3c6f43f5cd
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, llvm
, typesentry
, blessed
, pytest
}:
buildPythonPackage rec {
pname = "datatable";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1s8z81zffrckvdwrrl0pkjc7gsdvjxw59xgg6ck81dl7gkh5grjk";
};
disabled = pythonOlder "3.5";
propagatedBuildInputs = [ typesentry blessed ];
buildInputs = [ llvm ];
checkInputs = [ pytest ];
LLVM = llvm;
checkPhase = ''
# py.test adds local datatable to path, which doesn't contain built native library.
mv datatable datatable.hidden
pytest
'';
meta = with lib; {
description = "data.table for Python";
homepage = "https://github.com/h2oai/datatable";
license = licenses.mpl20;
maintainers = with maintainers; [ abbradar ];
};
}

View File

@ -345,6 +345,8 @@ in {
btchip = callPackage ../development/python-modules/btchip { };
datatable = callPackage ../development/python-modules/datatable { };
datamodeldict = callPackage ../development/python-modules/datamodeldict { };
datasette = callPackage ../development/python-modules/datasette { };