3
0
Fork 0
forked from mirrors/nixpkgs

mapsplotlib: init at 1.0.6

This commit is contained in:
Rob Vermaas 2018-01-19 16:12:18 +01:00
parent 1fbf696965
commit 26734df1c6
No known key found for this signature in database
GPG key ID: 6B726FB2EE6F4255

View file

@ -10065,6 +10065,24 @@ in {
};
};
mapsplotlib = buildPythonPackage rec {
name = "mapsplotlib-${version}";
version = "1.0.6";
src = pkgs.fetchurl {
url = "mirror://pypi/m/mapsplotlib/${name}.tar.gz";
sha256 = "09gpws3x0jd88n636baxx5izjffrpjy4j6jl8l7vj29yzvrdr2bp";
};
propagatedBuildInputs = with self; [ matplotlib scipy pandas requests pillow ];
meta = {
description = "Custom Python plots on a Google Maps background";
homepage = https://github.com/tcassou/mapsplotlib;
maintainers = [ maintainers.rob ];
};
};
markdown = callPackage ../development/python-modules/markdown { };
markdownsuperscript = callPackage ../development/python-modules/markdownsuperscript {};