Skip to content

Commit

Permalink
Merge pull request #442 from imincik/pkgs-weekly-update-2024-10
Browse files Browse the repository at this point in the history
pkgs: weekly update 2024-10
  • Loading branch information
imincik authored Mar 8, 2024
2 parents 570012e + 3b812af commit 8099eaa
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
};

pdal = pkgs.callPackage ./pkgs/pdal {
inherit gdal libgeotiff tiledb;
inherit gdal libgeotiff proj tiledb;
};

proj = pkgs.callPackage ./pkgs/proj { };
Expand Down
8 changes: 2 additions & 6 deletions pkgs/grass/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "grass";
version = "8.3.1";
version = "8.3.2";

src = fetchFromGitHub {
owner = "OSGeo";
repo = "grass";
rev = finalAttrs.version;
hash = "sha256-SoJq4SuDYImfkM2e991s47vYusrmnrQaXn7p3xwyOOQ=";
hash = "sha256-loeg+7h676d2WdYOMcJFyzeEZcxjBynir6Hz0J/GBns=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -93,7 +93,6 @@ stdenv.mkDerivation (finalAttrs: {

configureFlags = [
"--with-blas"
"--with-fftw"
"--with-geos"
# It complains about missing libmysqld but doesn't really seem to need it
"--with-mysql"
Expand All @@ -107,10 +106,7 @@ stdenv.mkDerivation (finalAttrs: {
"--with-proj-share=${proj}/share/proj"
"--with-pthread"
"--with-readline"
"--with-zstd"
"--without-opengl"
] ++ lib.optionals stdenv.isLinux [
"--with-pdal"
] ++ lib.optionals stdenv.isDarwin [
"--without-cairo"
"--without-freetype"
Expand Down
4 changes: 2 additions & 2 deletions pkgs/proj/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

stdenv.mkDerivation (finalAttrs: {
pname = "proj";
version = "9.3.1";
version = "9.4.0";

src = fetchFromGitHub {
owner = "OSGeo";
repo = "PROJ";
rev = finalAttrs.version;
hash = "sha256-M8Zgy5xnmZu7mzxXXGqaIfe7o7iMf/1sOJVOBsTvtdQ=";
hash = "sha256-m8u5+uWeXI2lxxsTcVJbvCiV30CQifw4reAY3GHHavA=";
};

patches = [
Expand Down
3 changes: 3 additions & 0 deletions pkgs/pyproj/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ buildPythonPackage rec {
"test_sync_download__directory"
"test_sync_download__system_directory"
"test_transformer_group__download_grids"

# proj-data grid required
"test_azimuthal_equidistant"
];

pythonImportsCheck = [
Expand Down
5 changes: 4 additions & 1 deletion pkgs/rasterio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ buildPythonPackage rec {
"-m 'not network'"
];

disabledTests = lib.optionals stdenv.isDarwin [
disabledTests = [
# flaky
"test_outer_boundless_pixel_fidelity"
] ++ lib.optionals stdenv.isDarwin [
"test_reproject_error_propagation"
];

Expand Down

0 comments on commit 8099eaa

Please sign in to comment.