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