1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5, pandas
6}:
7
8
9buildPythonPackage rec {
10 pname = "bkcharts";
11 version = "0.2";
12
13 src = fetchPypi {
14 inherit version pname;
15 sha256 = "a5eaa8e78853dcecaa46345812e4fabe9cd3b96330ebf0809f640a4a0556d72e";
16 };
17
18 propagatedBuildInputs = [ numpy pandas ];
19
20 # Circular test dependency on bokeh
21 doCheck = false;
22
23 meta = {
24 description = "High level chart types built on top of Bokeh";
25 homepage = "https://github.com/bokeh/bkcharts";
26 license = lib.licenses.bsd3;
27 };
28}