pythonPackages.ibis-framework: init at 1.20
This commit is contained in:
parent
784e957c74
commit
2d5769884d
2 changed files with 59 additions and 0 deletions
57
pkgs/development/python-modules/ibis-framework/default.nix
Normal file
57
pkgs/development/python-modules/ibis-framework/default.nix
Normal file
|
@ -0,0 +1,57 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, multipledispatch
|
||||
, numpy
|
||||
, pandas
|
||||
, pytz
|
||||
, regex
|
||||
, toolz
|
||||
, isPy27
|
||||
, pytest
|
||||
, sqlalchemy
|
||||
, requests
|
||||
, tables
|
||||
, pyarrow
|
||||
, graphviz
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ibis-framework";
|
||||
version = "1.2.0";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "3a0b79dae6924be0a79669c881a9a1d4817997ad2f81a0f3b1cd03d70aebb071";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
multipledispatch
|
||||
numpy
|
||||
pandas
|
||||
pytz
|
||||
regex
|
||||
toolz
|
||||
sqlalchemy
|
||||
requests
|
||||
graphviz
|
||||
tables
|
||||
pyarrow
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
pytest ibis
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Productivity-centric Python Big Data Framework";
|
||||
homepage = https://github.com/ibis-project/ibis;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -5921,6 +5921,8 @@ in {
|
|||
|
||||
ibis = callPackage ../development/python-modules/ibis { };
|
||||
|
||||
ibis-framework = callPackage ../development/python-modules/ibis-framework { };
|
||||
|
||||
qiskit = callPackage ../development/python-modules/qiskit { };
|
||||
|
||||
qasm2image = callPackage ../development/python-modules/qasm2image { };
|
||||
|
|
Loading…
Reference in a new issue