python3Packages.pyosmium: add requests dependency

This commit is contained in:
Robert Scott
2021-09-05 15:00:37 +02:00
committed by Martin Weinelt
parent e7477887ae
commit b85ee268e1
@@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchFromGitHub, cmake, python
, libosmium, protozero, boost, expat, bzip2, zlib, pybind11
, nose, shapely, pythonOlder, isPyPy, lz4 }:
, nose, shapely, pythonOlder, isPyPy, lz4, requests }:
buildPythonPackage rec {
pname = "pyosmium";
@@ -17,6 +17,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ cmake ];
buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 lz4 ];
propagatedBuildInputs = [ requests ];
preBuild = "cd ..";