Skip to content

Commit 251804c

Browse files
authored
python312Packages.pygmt: 0.13.0 -> 0.14.0 (NixOS#372710)
2 parents 3f14b85 + 4dd3ede commit 251804c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pkgs/development/python-modules/pygmt/default.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,26 @@
1818

1919
buildPythonPackage rec {
2020
pname = "pygmt";
21-
version = "0.13.0";
21+
version = "0.14.0";
2222
pyproject = true;
2323

24-
disabled = pythonOlder "3.9";
24+
disabled = pythonOlder "3.11";
2525

2626
src = fetchFromGitHub {
2727
owner = "GenericMappingTools";
2828
repo = "pygmt";
2929
tag = "v${version}";
30-
hash = "sha256-DO9KUlmt5EV+ioOSQ/BOcx4pP409f94dzmFwqK2MwMY=";
30+
hash = "sha256-8dzZuv9feiRyh3l8wV6+gYvc6N+yQnabgSbvw4ig+GY=";
3131
};
3232

3333
postPatch = ''
3434
substituteInPlace pygmt/clib/loading.py \
3535
--replace-fail "env.get(\"GMT_LIBRARY_PATH\")" "env.get(\"GMT_LIBRARY_PATH\", \"${gmt}/lib\")"
3636
'';
3737

38-
nativeBuildInputs = [ setuptools-scm ];
38+
build-system = [ setuptools-scm ];
3939

40-
propagatedBuildInputs = [
40+
dependencies = [
4141
numpy
4242
netcdf4
4343
pandas
@@ -61,11 +61,11 @@ buildPythonPackage rec {
6161

6262
pythonImportsCheck = [ "pygmt" ];
6363

64-
meta = with lib; {
64+
meta = {
6565
description = "Python interface for the Generic Mapping Tools";
6666
homepage = "https://github.com/GenericMappingTools/pygmt";
67-
license = licenses.bsd3;
67+
license = lib.licenses.bsd3;
6868
changelog = "https://github.com/GenericMappingTools/pygmt/releases/tag/v${version}";
69-
maintainers = with maintainers; teams.geospatial.members;
69+
maintainers = lib.teams.geospatial.members;
7070
};
7171
}

0 commit comments

Comments
 (0)