pythonPackages.ibis-framework: init at 1.20

authored by

Chris Ostrouchov and committed by
Frederik Rietdijk
2d576988 784e957c

+59
+57
pkgs/development/python-modules/ibis-framework/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , multipledispatch 5 + , numpy 6 + , pandas 7 + , pytz 8 + , regex 9 + , toolz 10 + , isPy27 11 + , pytest 12 + , sqlalchemy 13 + , requests 14 + , tables 15 + , pyarrow 16 + , graphviz 17 + }: 18 + 19 + buildPythonPackage rec { 20 + pname = "ibis-framework"; 21 + version = "1.2.0"; 22 + disabled = isPy27; 23 + 24 + src = fetchPypi { 25 + inherit pname version; 26 + sha256 = "3a0b79dae6924be0a79669c881a9a1d4817997ad2f81a0f3b1cd03d70aebb071"; 27 + }; 28 + 29 + propagatedBuildInputs = [ 30 + multipledispatch 31 + numpy 32 + pandas 33 + pytz 34 + regex 35 + toolz 36 + sqlalchemy 37 + requests 38 + graphviz 39 + tables 40 + pyarrow 41 + ]; 42 + 43 + checkInputs = [ 44 + pytest 45 + ]; 46 + 47 + checkPhase = '' 48 + pytest ibis 49 + ''; 50 + 51 + meta = with lib; { 52 + description = "Productivity-centric Python Big Data Framework"; 53 + homepage = https://github.com/ibis-project/ibis; 54 + license = licenses.asl20; 55 + maintainers = [ maintainers.costrouc ]; 56 + }; 57 + }
+2
pkgs/top-level/python-packages.nix
··· 5921 5921 5922 5922 ibis = callPackage ../development/python-modules/ibis { }; 5923 5923 5924 + ibis-framework = callPackage ../development/python-modules/ibis-framework { }; 5925 + 5924 5926 qiskit = callPackage ../development/python-modules/qiskit { }; 5925 5927 5926 5928 qasm2image = callPackage ../development/python-modules/qasm2image { };