Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #477 from imincik/weekly-update-2024.17
Browse files Browse the repository at this point in the history
pkgs: weekly update (weekly-update-2024.17)
  • Loading branch information
imincik authored Apr 25, 2024
2 parents e5e1091 + 678a023 commit c096e3a
Show file tree
Hide file tree
Showing 7 changed files with 80 additions and 11 deletions.
5 changes: 4 additions & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ nix why-depends .#<PACKAGE> .#<DEPENDENCY>

### Packages update process

* Checkout to `weekly-update` PR (PR title "pkgs: weekly update (<DATE>)") (Thursday - Friday)
* Checkout to `weekly-update` PR (PR title "pkgs: weekly update (weekly-update-<DATE>)") (Thursday - Friday)
```bash
gh pr checkout -f <PR-NUMBER>
```
Expand All @@ -78,6 +78,9 @@ utils/pull-nixpkgs.sh <NIXPKGS-DIR>
```

* Visually review changes created by `pull-nixpkgs.sh` script
```
git diff
```

* Identify related PRs in Nixpkgs
```
Expand Down
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.

22 changes: 22 additions & 0 deletions pkgs/fiona/nixpkgs/cython.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git b/pkgs/fiona/default.nix a/pkgs/fiona/default.nix
index 35c9b57..e198752 100644
--- b/pkgs/fiona/default.nix
+++ a/pkgs/fiona/default.nix
@@ -2,7 +2,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
-, cython
+, cython_3
, gdal
, oldest-supported-numpy
, setuptools
@@ -34,7 +34,7 @@ buildPythonPackage rec {
};

nativeBuildInputs = [
- cython
+ cython_3
gdal # for gdal-config
oldest-supported-numpy
setuptools
4 changes: 2 additions & 2 deletions pkgs/qgis/unwrapped-ltr.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ let
urllib3
];
in mkDerivation rec {
version = "3.34.5";
version = "3.34.6";
pname = "qgis-ltr-unwrapped";

src = fetchFromGitHub {
owner = "qgis";
repo = "QGIS";
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-TRSS1YclGUfBjNz+Lo8U8YlN4kdJ9JLcwd7qpgwRbG0=";
hash = "sha256-eWd8oIINWVN5Dt6s4bc1RtQbytFd0foPgIcd/N2hsMw=";
};

passthru = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/qgis/unwrapped.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ let
urllib3
];
in mkDerivation rec {
version = "3.36.1";
version = "3.36.2";
pname = "qgis-unwrapped";

src = fetchFromGitHub {
owner = "qgis";
repo = "QGIS";
rev = "final-${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-/0wVPcQoliJFgY8Kn506gUHfY+kDTdLgzbp/0KLSAkI=";
hash = "sha256-/8mpzl/6UpjrMVjae2nqpS2DBRCq86rE+B3INzoRz8g=";
};

passthru = {
Expand Down
22 changes: 22 additions & 0 deletions pkgs/rasterio/nixpkgs/cython.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git b/pkgs/rasterio/default.nix a/pkgs/rasterio/default.nix
index abf2de3..150fe76 100644
--- b/pkgs/rasterio/default.nix
+++ a/pkgs/rasterio/default.nix
@@ -13,7 +13,7 @@
, click
, click-plugins
, cligj
-, cython
+, cython_3
, gdal
, hypothesis
, ipython
@@ -54,7 +54,7 @@ buildPythonPackage rec {
'';

nativeBuildInputs = [
- cython
+ cython_3
gdal
numpy
setuptools
22 changes: 22 additions & 0 deletions pkgs/shapely/nixpkgs/cython.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git b/pkgs/shapely/default.nix a/pkgs/shapely/default.nix
index 28f2acd..209cdf3 100644
--- b/pkgs/shapely/default.nix
+++ a/pkgs/shapely/default.nix
@@ -5,7 +5,7 @@
, pytestCheckHook
, pythonOlder

-, cython_0
+, cython
, geos
, numpy
, oldest-supported-numpy
@@ -26,7 +26,7 @@ buildPythonPackage rec {
};

nativeBuildInputs = [
- cython_0
+ cython
geos # for geos-config
oldest-supported-numpy
setuptools

0 comments on commit c096e3a

Please sign in to comment.