mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
8ef1d5fa31
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-basemap/versions
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, numpy
|
|
, matplotlib
|
|
, pillow
|
|
, setuptools
|
|
, pyproj
|
|
, pyshp
|
|
, six
|
|
, pkgs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "basemap";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matplotlib";
|
|
repo = "basemap";
|
|
rev = "v${version}rel";
|
|
sha256 = "13lw1iwa8hadpvqdgb06nh881l8c17awzvvwbfwblvb9q9s0lnzp";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy matplotlib pillow pyproj pyshp six ];
|
|
buildInputs = [ setuptools pkgs.geos ];
|
|
|
|
# Standard configurePhase from `buildPythonPackage` seems to break the setup.py script
|
|
configurePhase = ''
|
|
export GEOS_DIR=${pkgs.geos}
|
|
'';
|
|
|
|
# The 'check' target is not supported by the `setup.py` script.
|
|
# TODO : do the post install checks (`cd examples && ${python.interpreter} run_all.py`)
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://matplotlib.org/basemap/";
|
|
description = "Plot data on map projections with matplotlib";
|
|
longDescription = ''
|
|
An add-on toolkit for matplotlib that lets you plot data on map projections with
|
|
coastlines, lakes, rivers and political boundaries. See
|
|
http://matplotlib.github.com/basemap/users/examples.html for examples of what it can do.
|
|
'';
|
|
license = with licenses; [ mit gpl2 ];
|
|
};
|
|
|
|
}
|