forked from mirrors/nixpkgs
pythonPackages.folium: init at 0.3.0
This commit is contained in:
parent
2aeff6c05c
commit
665df607fb
45
pkgs/development/python-modules/folium/default.nix
Normal file
45
pkgs/development/python-modules/folium/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
, numpy
|
||||||
|
, nbconvert
|
||||||
|
, pandas
|
||||||
|
, mock
|
||||||
|
, jinja2
|
||||||
|
, branca
|
||||||
|
, six
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "folium";
|
||||||
|
version = "0.3.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "7729ddd6766b9c5dab17b3709e2387935fd5c655872f1cbab7b7036474415217";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Causes trouble because a certain file cannot be found
|
||||||
|
rm tests/notebooks/test_notebooks.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ pytest numpy nbconvert pandas mock ];
|
||||||
|
propagatedBuildInputs = [ jinja2 branca six ];
|
||||||
|
|
||||||
|
#
|
||||||
|
# doCheck = false;
|
||||||
|
|
||||||
|
# checkPhase = ''
|
||||||
|
# py.test -k 'not test_notebooks'
|
||||||
|
# '';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Make beautiful maps with Leaflet.js & Python";
|
||||||
|
homepage = https://github.com/python-visualization/folium;
|
||||||
|
license = with lib.licenses; [ mit ];
|
||||||
|
maintainers = with lib.maintainers; [ fridh ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -11788,6 +11788,8 @@ in {
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
folium = callPackage ../development/python-modules/folium { };
|
||||||
|
|
||||||
fontforge = pkgs.fontforge.override {
|
fontforge = pkgs.fontforge.override {
|
||||||
withPython = true;
|
withPython = true;
|
||||||
inherit python;
|
inherit python;
|
||||||
|
|
Loading…
Reference in a new issue