1{ lib
2, buildPythonPackage
3, fetchPypi
4, jinja2
5, six
6}:
7
8buildPythonPackage rec {
9 pname = "mplleaflet";
10 version = "0.0.5";
11
12 propagatedBuildInputs = [ jinja2 six ];
13
14 # No tests in archive
15 doCheck = false;
16
17 src = fetchPypi {
18 inherit pname version;
19 sha256 = "049e0b91797ce5b462853395138161fed9e8dfc1f4723f482ebb0739a0bbd289";
20 };
21
22 meta = {
23 description = "Convert Matplotlib plots into Leaflet web maps";
24 homepage = "https://github.com/jwass/mplleaflet";
25 license = with lib.licenses; [ bsd3 ];
26 };
27}