summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/mapsplotlib
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-01-03 00:08:40 +0000
committerGitHub <noreply@github.com>2022-01-03 00:08:40 +0000
commit4acff2bbdedb6892f4fe6225d77aa184a4500a82 (patch)
tree9cf787a372c89c6c14ca99ed83cc7ed3a5dec7a7 /pkgs/development/python-modules/mapsplotlib
parentb0c76508ef985738a3b0f58420603b8933e03c12 (diff)
parent74f542c42e5bca4f74f53cf7054c8a93d4736f51 (diff)
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/mapsplotlib')
-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 ];
- };
-
-}