Skip to content

Commit 5b877ff

Browse files
authored
proj: 9.7.1 -> 9.8.0 (#498606)
2 parents de84ab0 + b630067 commit 5b877ff

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

pkgs/by-name/pr/proj/package.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
stdenv.mkDerivation (finalAttrs: {
1919
pname = "proj";
20-
version = "9.7.1";
20+
version = "9.8.0";
2121

2222
src = fetchFromGitHub {
2323
owner = "OSGeo";
2424
repo = "PROJ";
2525
tag = finalAttrs.version;
26-
hash = "sha256-xXtqbLPS2Hu9gC06b72HDjnNRh4m0ism97hP8FFYOMo=";
26+
hash = "sha256-LvzQ2sW+h5uHJg+6z8/Nf99EVIPUQfWoaNr0iFUpD/0=";
2727
};
2828

2929
patches = [

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

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
lib,
33
buildPythonPackage,
44
fetchFromGitHub,
5+
fetchpatch2,
56
pytestCheckHook,
67
replaceVars,
78

@@ -33,6 +34,23 @@ buildPythonPackage rec {
3334
proj = proj;
3435
projdev = proj.dev;
3536
})
37+
# PROJ 9.8.0 compatibility
38+
(fetchpatch2 {
39+
url = "https://github.com/pyproj4/pyproj/pull/1557.diff?full_index=1";
40+
hash = "sha256-3iK/JaQEgyQvPjybJF/ATxOy3fFl7q6aa9tdfsrhajM=";
41+
})
42+
(fetchpatch2 {
43+
url = "https://github.com/pyproj4/pyproj/pull/1560.diff?full_index=1";
44+
hash = "sha256-fr+lvDeVFDagc9aHzaQhyZtWK2sy5kR7iImJsuxW8Z4=";
45+
})
46+
(fetchpatch2 {
47+
url = "https://github.com/pyproj4/pyproj/pull/1568.diff?full_index=1";
48+
hash = "sha256-fVFg3/ikOk6LiRHA/u14g+ZFsROGE7me878Vvq4mxG4=";
49+
})
50+
(fetchpatch2 {
51+
url = "https://github.com/pyproj4/pyproj/pull/1581.diff?full_index=1";
52+
hash = "sha256-EdzUCt4P99ENS2qCBU30FUNnJYD0B2CqcmZXwEYLdVA=";
53+
})
3654
];
3755

3856
build-system = [
@@ -72,9 +90,6 @@ buildPythonPackage rec {
7290
"test_sync__source_id__list"
7391
"test_sync_download"
7492
"test_transformer_group__download_grids"
75-
# https://github.com/pyproj4/pyproj/issues/1553
76-
"test_datum_horizontal"
77-
"test_sub_crs"
7893
];
7994

8095
pythonImportsCheck = [

0 commit comments

Comments
 (0)