python3Packages.pyosmium: add requests dependency

This commit is contained in:
Robert Scott 2021-08-30 17:14:52 +01:00 committed by Martin Weinelt
parent e7477887ae
commit b85ee268e1

View File

@ -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 ..";