summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/mapsplotlib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mapsplotlib/default.nix')
-rw-r--r--pkgs/development/python-modules/mapsplotlib/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/python-modules/mapsplotlib/default.nix b/pkgs/development/python-modules/mapsplotlib/default.nix
deleted file mode 100644
index 28a6e9c0c5c4..000000000000
--- a/pkgs/development/python-modules/mapsplotlib/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib
-, buildPythonPackage
-, isPy3k
-, fetchPypi
-, matplotlib
-, scipy
-, pandas
-, requests
-, pillow
-}:
-
-buildPythonPackage rec {
- pname = "mapsplotlib";
- version = "1.2.1";
-
- disabled = isPy3k;
-
- src = fetchPypi {
- inherit pname version;
- 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 ];
- };
-
-}