3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #60727 from r-ryantm/auto-update/python3.7-plotly

python37Packages.plotly: 3.7.1 -> 3.8.1
This commit is contained in:
Mario Rodas 2019-05-08 22:26:37 -05:00 committed by GitHub
commit 5be0d1e57f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, stdenv, fetchPypi
{ buildPythonPackage, stdenv, fetchPypi, fetchpatch
, numpy, pandas, plotly, six, colorlover
, ipython, ipywidgets, nose
}:
@ -17,6 +17,14 @@ buildPythonPackage rec {
ipython ipywidgets
];
patches = [
# Plotly 3.8 compatibility. Remove with the next release. See https://github.com/santosjorge/cufflinks/pull/178
(fetchpatch {
url = "https://github.com/santosjorge/cufflinks/commit/cc4c23c2b45b870f6801d1cb0312948e1f73f424.patch";
sha256 = "1psl2h7vscpzvb4idr6s175v8znl2mfhkcyhb1926p4saswmghw1";
})
];
checkInputs = [ nose ];
checkPhase = ''

View file

@ -11,11 +11,11 @@
buildPythonPackage rec {
pname = "plotly";
version = "3.7.1";
version = "3.9.0";
src = fetchPypi {
inherit pname version;
sha256 = "1gad00c0p56zvmk2yzy03m0f3fcq67q9kdgdfxph2aw905mkwddc";
sha256 = "498c35a2a482f7c7937fc2f3681fec653a0191dd21e40e754a6b774234cd167e";
};
propagatedBuildInputs = [