python3Packages.pyowm: fix python3 build (#46549)

See https://hydra.nixos.org/build/80714323

Version 2.9 requires `geojson==2.x'. To allow 2.4, the constraint
required some patching using `substituteInPlace'.

Addresses #45960
This commit is contained in:
Maximilian Bosch 2018-09-12 01:23:36 +02:00 committed by xeji
parent 8d4248a4cb
commit a25dcb6607

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, requests }:
{ lib, buildPythonPackage, fetchPypi, requests, geojson }:
buildPythonPackage rec {
pname = "pyowm";
@ -9,11 +9,13 @@ buildPythonPackage rec {
sha256 = "ed175873823a2fedb48e453505c974ca39f3f75006ef1af54fdbcf72e6796849";
};
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [ requests geojson ];
# This may actually break the package.
postPatch = ''
substituteInPlace setup.py --replace "requests>=2.18.2,<2.19" "requests"
substituteInPlace setup.py \
--replace "requests>=2.18.2,<2.19" "requests" \
--replace "geojson>=2.3.0,<2.4" "geojson<2.5,>=2.3.0"
'';
# No tests in archive