Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / bkcharts / default.nix
blob9e105c09d57bcef40179f7140e4972b0690fab69
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , numpy
5 , pandas
6 }:
9 buildPythonPackage rec {
10   pname = "bkcharts";
11   version = "0.2";
13   src = fetchPypi {
14     inherit version pname;
15     sha256 = "a5eaa8e78853dcecaa46345812e4fabe9cd3b96330ebf0809f640a4a0556d72e";
16   };
18   propagatedBuildInputs = [ numpy pandas ];
20   # Circular test dependency on bokeh
21   doCheck = false;
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   };