3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/mapsplotlib/default.nix

33 lines
624 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, matplotlib
, scipy
, pandas
, requests
, pillow
}:
buildPythonPackage rec {
pname = "mapsplotlib";
2020-07-31 09:56:41 +01:00
version = "1.2.1";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2020-07-31 09:56:41 +01:00
sha256 = "7650754e3175f13a1cb4406a62e4cfeb424036377992b9c3c2e3f6c2404d06b3";
};
propagatedBuildInputs = [ matplotlib scipy pandas requests pillow ];
meta = with lib; {
description = "Custom Python plots on a Google Maps background";
homepage = "https://github.com/tcassou/mapsplotlib";
license = licenses.mit;
maintainers = [ maintainers.rob ];
};
}