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

43 lines
797 B
Nix
Raw Normal View History

2017-05-04 14:18:16 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
2017-05-04 14:18:16 +00:00
, pytest
, numpy
, nbconvert
, pandas
, mock
, jinja2
, branca
2017-11-11 08:22:25 +00:00
, requests
2017-05-04 14:18:16 +00:00
}:
buildPythonPackage rec {
pname = "folium";
version = "0.9.1";
2017-05-04 14:18:16 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "66901483808839ed895a685ca7bc4731379f4a627d73a83b77f0df1847b14892";
2017-05-04 14:18:16 +00:00
};
disabled = pythonOlder "3.5";
checkInputs = [ pytest nbconvert pandas mock ];
propagatedBuildInputs = [ jinja2 branca 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 ];
};
}