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.1.2";
15
16 disabled = isPy3k;
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "99ff773a298bdf0f3185a4c7ac20677a843df818583b368925dcf766cd99f09a";
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}