nixpkgs/pkgs/development/python-modules/folium/default.nix

41 lines
748 B
Nix
Raw Normal View History

2017-05-04 14:18:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, numpy
, nbconvert
, pandas
, mock
, jinja2
, branca
, six
2017-11-11 08:22:25 +00:00
, requests
2017-05-04 14:18:16 +00:00
}:
buildPythonPackage rec {
pname = "folium";
version = "0.7.0";
2017-05-04 14:18:16 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "04mhdl3k644j45rlfkamxz1paf58fxrmnwgvkrvza2fcwcs4nr9n";
2017-05-04 14:18:16 +00:00
};
checkInputs = [ pytest nbconvert pandas mock ];
2018-08-31 08:39:44 +00:00
propagatedBuildInputs = [ jinja2 branca six requests numpy ];
2017-05-04 14:18:16 +00:00
2017-11-11 08:22:25 +00:00
# No tests in archive
doCheck = false;
2017-05-04 14:18:16 +00:00
2017-11-11 08:22:25 +00:00
checkPhase = ''
py.test
'';
2017-05-04 14:18:16 +00:00
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 ];
};
}