2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
2019-08-07 03:00:18 +01:00
|
|
|
, entrypoints
|
|
|
|
, glibcLocales
|
|
|
|
, ipython
|
|
|
|
, jinja2
|
|
|
|
, jsonschema
|
|
|
|
, numpy
|
|
|
|
, pandas
|
|
|
|
, pytest
|
|
|
|
, pythonOlder
|
|
|
|
, recommonmark
|
|
|
|
, six
|
|
|
|
, sphinx
|
|
|
|
, toolz
|
|
|
|
, typing
|
|
|
|
, vega_datasets
|
|
|
|
}:
|
2017-07-15 06:58:25 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "altair";
|
2020-04-06 15:05:25 +01:00
|
|
|
version = "4.1.0";
|
2019-12-22 23:29:18 +00:00
|
|
|
disabled = isPy27;
|
2017-07-15 06:58:25 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-04-06 15:05:25 +01:00
|
|
|
sha256 = "0c99q5dy6f275yg1f137ird08wmwc1z8wmvjickkf2mvyka31p9y";
|
2017-07-15 06:58:25 +01:00
|
|
|
};
|
|
|
|
|
2019-08-07 03:00:18 +01:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
entrypoints
|
|
|
|
jsonschema
|
|
|
|
numpy
|
|
|
|
pandas
|
|
|
|
six
|
|
|
|
toolz
|
2021-01-24 00:29:22 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.5") [ typing ];
|
2018-12-02 13:04:24 +00:00
|
|
|
|
2019-08-07 03:00:18 +01:00
|
|
|
checkInputs = [
|
|
|
|
glibcLocales
|
|
|
|
ipython
|
|
|
|
jinja2
|
|
|
|
pytest
|
|
|
|
recommonmark
|
|
|
|
sphinx
|
|
|
|
vega_datasets
|
|
|
|
];
|
2018-03-20 15:33:08 +00:00
|
|
|
|
2017-07-15 06:58:25 +01:00
|
|
|
checkPhase = ''
|
|
|
|
export LANG=en_US.UTF-8
|
2020-01-25 09:20:00 +00:00
|
|
|
# histogram_responsive.py attempt network access, and cannot be disabled through pytest flags
|
|
|
|
rm altair/examples/histogram_responsive.py
|
2019-08-07 03:00:18 +01:00
|
|
|
pytest --doctest-modules altair
|
2017-07-15 06:58:25 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-15 06:58:25 +01:00
|
|
|
description = "A declarative statistical visualization library for Python.";
|
2020-04-06 15:05:25 +01:00
|
|
|
homepage = "https://github.com/altair-viz/altair";
|
2017-07-15 06:58:25 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ teh ];
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2017-07-15 06:58:25 +01:00
|
|
|
};
|
|
|
|
}
|