summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-mapnik
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-24 01:56:45 +0100
committerGitHub <noreply@github.com>2021-01-24 01:56:45 +0100
commitcdd646edf80bef1bad2074933d153fadd3c0aec5 (patch)
treec7f174a023f4ab5ea8b2591524336e5e68100bb7 /pkgs/development/python-modules/python-mapnik
parentb9e560c5af38e69b431a5cf8ab7ecab0e15ab18e (diff)
parenta4bbfba80dbdccf7c3d3ac64fc7afa2494cf743a (diff)
Merge pull request #110645 from prusnak/stdenv-lib-python
pkgs/development/python-modules: stdenv.lib -> lib
Diffstat (limited to 'pkgs/development/python-modules/python-mapnik')
-rw-r--r--pkgs/development/python-modules/python-mapnik/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-mapnik/default.nix b/pkgs/development/python-modules/python-mapnik/default.nix
index e129bf452195..fe68ed60e372 100644
--- a/pkgs/development/python-modules/python-mapnik/default.nix
+++ b/pkgs/development/python-modules/python-mapnik/default.nix
@@ -30,7 +30,7 @@ in buildPythonPackage rec {
disabled = isPyPy;
doCheck = false; # doesn't find needed test data files
preBuild = let
- pythonVersion = with stdenv.lib.versions; "${major python.version}${minor python.version}";
+ pythonVersion = with lib.versions; "${major python.version}${minor python.version}";
in ''
export BOOST_PYTHON_LIB="boost_python${pythonVersion}"
export BOOST_THREAD_LIB="boost_thread"