1{ buildPythonPackage, stdenv, fetchPypi, pandas, plotly, colorlover
2}:
3
4buildPythonPackage rec {
5 pname = "cufflinks";
6 version = "0.13.0";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "59f1bae67aaa5042c8f9f94caba44b9b8e6e530ce9e81f6e06b643aca253d2f4";
11 };
12
13 propagatedBuildInputs = [ pandas plotly colorlover ];
14
15 # tests not included in archive
16 doCheck = false;
17
18 meta = {
19 homepage = https://github.com/santosjorge/cufflinks;
20 description = "Productivity Tools for Plotly + Pandas";
21 license = stdenv.lib.licenses.mit;
22 maintainers = with stdenv.lib.maintainers; [ globin ];
23 };
24}