Merge pull request #61901 from r-ryantm/auto-update/python3.7-folium

python37Packages.folium: 0.8.3 -> 0.9.0
This commit is contained in:
Mario Rodas 2019-05-26 16:45:32 -05:00 committed by GitHub
commit 9e04cb3143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder
, pytest , pytest
, numpy , numpy
, nbconvert , nbconvert
@ -8,21 +9,22 @@
, mock , mock
, jinja2 , jinja2
, branca , branca
, six
, requests , requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "folium"; pname = "folium";
version = "0.8.3"; version = "0.9.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "b7a1e907caac6ddaf0614555f58ba9af2ed65356ccc77f6ba6fc3df202d8f146"; sha256 = "66901483808839ed895a685ca7bc4731379f4a627d73a83b77f0df1847b14892";
}; };
disabled = pythonOlder "3.5";
checkInputs = [ pytest nbconvert pandas mock ]; checkInputs = [ pytest nbconvert pandas mock ];
propagatedBuildInputs = [ jinja2 branca six requests numpy ]; propagatedBuildInputs = [ jinja2 branca requests numpy ];
# No tests in archive # No tests in archive
doCheck = false; doCheck = false;