61 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy27
2019-08-06 19:00:18 -07:00
, entrypoints
, glibcLocales
, ipython
, jinja2
, jsonschema
, numpy
, pandas
, pytest
, pythonOlder
, recommonmark
, six
, sphinx
, toolz
, typing
, vega_datasets
}:
buildPythonPackage rec {
pname = "altair";
2019-12-19 20:31:04 +01:00
version = "4.0.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:04 +01:00
sha256 = "92dcd7b84c715f8e02bbdf37e36193a4af8138b5b064c05f237e6ed41573880a";
};
2019-08-06 19:00:18 -07:00
propagatedBuildInputs = [
entrypoints
jsonschema
numpy
pandas
six
toolz
] ++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ];
2019-08-06 19:00:18 -07:00
checkInputs = [
glibcLocales
ipython
jinja2
pytest
recommonmark
sphinx
vega_datasets
];
2018-03-20 16:33:08 +01:00
checkPhase = ''
export LANG=en_US.UTF-8
2019-08-06 19:00:18 -07:00
pytest --doctest-modules altair
'';
meta = with stdenv.lib; {
description = "A declarative statistical visualization library for Python.";
homepage = https://github.com/altair-viz/altair;
license = licenses.bsd3;
maintainers = with maintainers; [ teh ];
platforms = platforms.unix;
};
}