Skip to content

Commit abb6ad9

Browse files
committed
python3Packages.python-mapnik: remove superfluous stdenv parameter to buildPythonApplication
Passing `stdenv` directly to `buildPythonPackage` or `buildPythonApplication` is deprecated with `oldestSupportedRelease = 2511`. Passing `python.stdenv` to `buildPythonApplication` doensn't do anything
1 parent 2bd654f commit abb6ad9

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • pkgs/development/python-modules/python-mapnik

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
replaceVars,
66
isPyPy,
77
python,
8+
stdenv,
89
setuptools,
910
pillow,
1011
pycairo,
@@ -27,7 +28,7 @@
2728
pybind11,
2829
}:
2930

30-
buildPythonPackage rec {
31+
buildPythonPackage {
3132
pname = "python-mapnik";
3233
version = "4.1.3.unstable-2025-09-25";
3334
pyproject = true;
@@ -49,8 +50,6 @@ buildPythonPackage rec {
4950
})
5051
];
5152

52-
stdenv = python.stdenv;
53-
5453
build-system = [ setuptools ];
5554

5655
nativeBuildInputs = [

0 commit comments

Comments
 (0)