mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python3Packages.pyosmium: add requests dependency
This commit is contained in:
parent
e7477887ae
commit
b85ee268e1
1 changed files with 2 additions and 1 deletions
|
@ -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 ..";
|
||||
|
||||
|
|
Loading…
Reference in a new issue