3
0
Fork 0
forked from mirrors/nixpkgs

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

View file

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