1{ stdenv
2, buildPythonPackage
3, isPy3k
4, fetchPypi
5, matplotlib
6, scipy
7, pandas
8, requests
9, pillow
10}:
11
12buildPythonPackage rec {
13 pname = "mapsplotlib";
14 version = "1.2.0";
15
16 disabled = isPy3k;
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "e0a18aa0d134407aab6130c314596732d129ff98f9a6084640a07a5b8656f836";
21 };
22
23 propagatedBuildInputs = [ matplotlib scipy pandas requests pillow ];
24
25 meta = with stdenv.lib; {
26 description = "Custom Python plots on a Google Maps background";
27 homepage = https://github.com/tcassou/mapsplotlib;
28 license = licenses.mit;
29 maintainers = [ maintainers.rob ];
30 };
31
32}