diff options
| author | Chris Ostrouchov <chris.ostrouchov@gmail.com> | 2018-10-15 17:44:05 -0400 |
|---|---|---|
| committer | Frederik Rietdijk <fridh@fridh.nl> | 2018-10-17 07:46:56 +0200 |
| commit | d70a0fc07937b28843c8e552dafb63b68dda0a3c (patch) | |
| tree | 38e5a95dd7d7fb827995316f3b7a733297fb5f56 /pkgs/development/python-modules/mapsplotlib | |
| parent | 1bbb17afe54afc8738263cbc05fb1bfc84439869 (diff) | |
pythonPackages.mapsplotlib: refactor move to python-modules
Diffstat (limited to 'pkgs/development/python-modules/mapsplotlib')
| -rw-r--r-- | pkgs/development/python-modules/mapsplotlib/default.nix | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/mapsplotlib/default.nix b/pkgs/development/python-modules/mapsplotlib/default.nix new file mode 100644 index 000000000000..861f3069bb02 --- /dev/null +++ b/pkgs/development/python-modules/mapsplotlib/default.nix @@ -0,0 +1,32 @@ +{ stdenv +, buildPythonPackage +, isPy3k +, fetchPypi +, matplotlib +, scipy +, pandas +, requests +, pillow +}: + +buildPythonPackage rec { + pname = "mapsplotlib"; + version = "1.0.6"; + + disabled = isPy3k; + + src = fetchPypi { + inherit pname version; + sha256 = "09gpws3x0jd88n636baxx5izjffrpjy4j6jl8l7vj29yzvrdr2bp"; + }; + + propagatedBuildInputs = [ matplotlib scipy pandas requests pillow ]; + + meta = with stdenv.lib; { + description = "Custom Python plots on a Google Maps background"; + homepage = https://github.com/tcassou/mapsplotlib; + license = licenses.mit; + maintainers = [ maintainers.rob ]; + }; + +} |
