summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2017-09-05 09:31:45 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2017-09-05 09:31:45 +0200
commite9215bda452984b6caadd74a14763d583f401b6b (patch)
tree455499b775f037662e56e2c86c707815ccd1152a /pkgs/development
parent5db60dbe1d856316aee04303756c048784d786e3 (diff)
downloadnixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar.gz
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar.bz2
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar.lz
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar.xz
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.tar.zst
nixpkgs-e9215bda452984b6caadd74a14763d583f401b6b.zip
python.pkgs.bkcharts: init at 0.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/bkcharts/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/bkcharts/default.nix b/pkgs/development/python-modules/bkcharts/default.nix
new file mode 100644
index 00000000000..dee19b45f44
--- /dev/null
+++ b/pkgs/development/python-modules/bkcharts/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, numpy
+, pandas
+}:
+
+
+buildPythonPackage rec {
+  pname = "bkcharts";
+  version = "0.2";
+  name = "${pname}-${version}";
+
+  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 = http://github.com/bokeh/bkcharts;
+    license = lib.licenses.bsd3;
+  };
+}
\ No newline at end of file