1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{
lib,
pythonOlder,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
gmt,
numpy,
netcdf4,
pandas,
packaging,
xarray,
pytest-mpl,
ipython,
ghostscript,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pygmt";
version = "0.14.2";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "GenericMappingTools";
repo = "pygmt";
tag = "v${version}";
hash = "sha256-UwqkJxO+LbJz7BVbQnulxm4sMrKHoY3ayqLHfZy7Ji4=";
};
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
netcdf4
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}";
maintainers = lib.teams.geospatial.members;
};
}
|