python3Packages.pyosmium: add requests dependency
This commit is contained in:
parent
70abdfac1e
commit
297f3c6d21
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, cmake, python
|
{ lib, buildPythonPackage, fetchFromGitHub, cmake, python
|
||||||
, libosmium, protozero, boost, expat, bzip2, zlib, pybind11
|
, libosmium, protozero, boost, expat, bzip2, zlib, pybind11
|
||||||
, nose, shapely, pythonOlder, isPyPy, lz4 }:
|
, nose, shapely, pythonOlder, isPyPy, lz4, requests }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyosmium";
|
pname = "pyosmium";
|
||||||
|
@ -17,6 +17,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 lz4 ];
|
buildInputs = [ libosmium protozero boost expat bzip2 zlib pybind11 lz4 ];
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
preBuild = "cd ..";
|
preBuild = "cd ..";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue