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