python3Packages.pyosmium: add requests dependency

authored by

Robert Scott and committed by
Martin Weinelt
b85ee268 e7477887

+2 -1
+2 -1
pkgs/development/python-modules/pyosmium/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, cmake, python 2 2 , libosmium, protozero, boost, expat, bzip2, zlib, pybind11 3 - , nose, shapely, pythonOlder, isPyPy, lz4 }: 3 + , nose, shapely, pythonOlder, isPyPy, lz4, requests }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "pyosmium"; ··· 17 17 18 18 nativeBuildInputs = [ cmake ]; 19 19 buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 lz4 ]; 20 + propagatedBuildInputs = [ requests ]; 20 21 21 22 preBuild = "cd .."; 22 23