0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

owslib: add pyyaml as a runtime dep

This commit is contained in:
Taylor Viti 2020-06-03 14:56:20 -10:00
parent 467ce5a9f4
commit 8da7b45020

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } : { lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
buildPythonPackage rec { buildPythonPackage rec {
pname = "OWSLib"; pname = "OWSLib";
version = "0.19.2"; version = "0.19.2";
@ -9,7 +9,7 @@ buildPythonPackage rec {
}; };
buildInputs = [ pytest ]; buildInputs = [ pytest ];
propagatedBuildInputs = [ dateutil pyproj pytz requests ]; propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
# 'tests' dir not included in pypy distribution archive. # 'tests' dir not included in pypy distribution archive.
doCheck = false; doCheck = false;