Skip to content

Commit

Permalink
Merge pull request #445 from imincik/pkgs-weekly-update-2024-11
Browse files Browse the repository at this point in the history
pkgs: weekly update 2024-11
  • Loading branch information
imincik committed Mar 15, 2024
2 parents e45f2e1 + a1355d5 commit 91cfd88
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ git checkout -b pkgs-weekly-update-$(date "+%Y-%V")
git push --set-upstream origin pkgs-weekly-update-$(date "+%Y-%V")
```

* Merge automatically created flake update PR (`flake-update-action-pr` branch)
in to `pkgs-weekly-update` branch
* Change base of automatically created flake update PR (`flake-update-action-pr`
branch) and merge in in to `pkgs-weekly-update` branch

* Submit `pkgs-weekly-update` PR
```
Expand Down
6 changes: 3 additions & 3 deletions flake.lock

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

4 changes: 2 additions & 2 deletions pkgs/fiona/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

buildPythonPackage rec {
pname = "fiona";
version = "1.9.5";
version = "1.9.6";
pyproject = true;

disabled = pythonOlder "3.7";
Expand All @@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "Toblerity";
repo = "Fiona";
rev = "refs/tags/${version}";
hash = "sha256-fq/BuyzuK4iOxdpE4h+KRH0CxOEk/wdmbb9KgCfJ1cw=";
hash = "sha256-MboM3IwGF8cuz+jMQ3QVZFAHjpspQ6kVJincq7OEkCM=";
};

nativeBuildInputs = [
Expand Down
9 changes: 9 additions & 0 deletions pkgs/gdal/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
, stdenv
, callPackage
, fetchFromGitHub
, fetchpatch

, useMinimalFeatures ? false
, useTiledb ? (!useMinimalFeatures) && !(stdenv.isDarwin && stdenv.isx86_64)
Expand Down Expand Up @@ -88,6 +89,14 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-R9VLof13OXPbWGHOG1Q4WZWSPoF739C6WuNWxoIwKTw=";
};

patches = [
# bump java source option to fix build with JDK 21
(fetchpatch {
url = "https://github.com/OSGeo/gdal/commit/ca2eb4130750b0e6365f738a5f8ff77081f5c5bb.patch";
sha256 = "sha256-wShYm9yA7twJR72co+Tvf/IuYXqbI0OrjWl0uqC3bwo=";
})
];

nativeBuildInputs = [
bison
cmake
Expand Down
2 changes: 0 additions & 2 deletions pkgs/grass/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
, pkg-config
, postgresql
, proj
, proj-datumgrid
, python3Packages
, readline
, sqlite
Expand Down Expand Up @@ -71,7 +70,6 @@ stdenv.mkDerivation (finalAttrs: {
pdal
postgresql
proj
proj-datumgrid
readline
sqlite
wxGTK32
Expand Down
4 changes: 2 additions & 2 deletions pkgs/owslib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

buildPythonPackage rec {
pname = "owslib";
version = "0.29.3";
version = "0.30.0";
format = "setuptools";

disabled = pythonOlder "3.7";
Expand All @@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "geopython";
repo = "OWSLib";
rev = "refs/tags/${version}";
hash = "sha256-yAJXknSsGXcerzaOVSrFO4j5E6B/4/0JfoSxZ+Szmws=";
hash = "sha256-miKAgZBiqZ6+0qDvlf8+VZ6omH5hlImO0E7AVK7FuD0=";
};

postPatch = ''
Expand Down
13 changes: 7 additions & 6 deletions pkgs/shapely/default.nix
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
{ lib
, stdenv
, buildPythonPackage
, pythonOlder
, fetchPypi
, pytestCheckHook
, pythonOlder

, cython
, geos
, numpy
, oldest-supported-numpy
, setuptools
, wheel
, numpy
, pytestCheckHook
}:

buildPythonPackage rec {
pname = "shapely";
version = "2.0.2";
format = "pyproject";
version = "2.0.3";
pyproject = true;

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
hash = "sha256-FxPMBMFxuv/Fslm6hTHFiswqMBcHt/Ah2IoV7QkGSec=";
hash = "sha256-TWXQqnkQr3Hvpy/WRH4CqOXdRNqBqYPenXNtbmzL5nQ=";
};

nativeBuildInputs = [
Expand Down

0 comments on commit 91cfd88

Please sign in to comment.