python37Packages.folium: 0.8.3 -> 0.9.1

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-folium/versions
This commit is contained in:
R. RyanTM 2019-05-22 09:59:09 -07:00 committed by Mario Rodas
parent 39adff94a1
commit 5ff19ca742
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
1 changed files with 6 additions and 4 deletions

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;