Files
nixpkgs/pkgs/development/python-modules/pygmt/default.nix
2025-10-07 11:33:24 +00:00

70 lines
1.3 KiB
Nix

{
lib,
pythonOlder,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
gmt,
numpy,
pandas,
packaging,
xarray,
pytest-mpl,
ipython,
ghostscript,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pygmt";
version = "0.17.0";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "GenericMappingTools";
repo = "pygmt";
tag = "v${version}";
hash = "sha256-YW111pgaW13TrD6mu+WgeLNljgmXWT/r1mZDbl9uROw=";
};
postPatch = ''
substituteInPlace pygmt/clib/loading.py \
--replace-fail "env.get(\"GMT_LIBRARY_PATH\")" "env.get(\"GMT_LIBRARY_PATH\", \"${gmt}/lib\")"
'';
build-system = [ setuptools-scm ];
dependencies = [
numpy
pandas
packaging
xarray
];
nativeCheckInputs = [
pytestCheckHook
pytest-mpl
ghostscript
ipython
];
# The *entire* test suite requires network access
doCheck = false;
postBuild = ''
export HOME=$TMP
'';
pythonImportsCheck = [ "pygmt" ];
meta = {
description = "Python interface for the Generic Mapping Tools";
homepage = "https://github.com/GenericMappingTools/pygmt";
license = lib.licenses.bsd3;
changelog = "https://github.com/GenericMappingTools/pygmt/releases/tag/${src.tag}";
teams = [ lib.teams.geospatial ];
};
}