about summary refs log tree commit diff
path: root/pkgs/development/python-modules/bkcharts/default.nix
blob: 737535ce3cf63c7a25a926d0b6160a2025802174 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  lib,
  buildPythonPackage,
  fetchPypi,
  numpy,
  pandas,
}:

buildPythonPackage rec {
  pname = "bkcharts";
  version = "0.2";
  format = "setuptools";

  src = fetchPypi {
    inherit version pname;
    sha256 = "a5eaa8e78853dcecaa46345812e4fabe9cd3b96330ebf0809f640a4a0556d72e";
  };

  propagatedBuildInputs = [
    numpy
    pandas
  ];

  # Circular test dependency on bokeh
  doCheck = false;

  meta = {
    description = "High level chart types built on top of Bokeh";
    homepage = "https://github.com/bokeh/bkcharts";
    license = lib.licenses.bsd3;
  };
}