about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorBenjamin Hipple <bhipple@protonmail.com>2020-06-04 00:41:26 -0400
committerGitHub <noreply@github.com>2020-06-04 00:41:26 -0400
commit9a64d6bf45126d3012957c232e91a59f296e31f5 (patch)
treec5555456c51f78afe5312789085bc27cbdd5f89e /pkgs/development/python-modules
parentfcb717f0dfcbc0dd1b766566ff8faae9420c7736 (diff)
parent8da7b45020776a25d560434b9473f0dc9287210c (diff)
downloadnixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar.gz
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar.bz2
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar.lz
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar.xz
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.tar.zst
nixlib-9a64d6bf45126d3012957c232e91a59f296e31f5.zip
Merge pull request #89451 from tviti/fix-owslib
owslib: add pyyaml as a runtime dep
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/owslib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix
index e5dea71c8fd8..b19e41116f02 100644
--- a/pkgs/development/python-modules/owslib/default.nix
+++ b/pkgs/development/python-modules/owslib/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } :
+{ lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
 buildPythonPackage rec {
   pname = "OWSLib";
   version = "0.19.2";
@@ -9,7 +9,7 @@ buildPythonPackage rec {
   };
 
   buildInputs = [ pytest ];
-  propagatedBuildInputs = [ dateutil pyproj pytz requests ];
+  propagatedBuildInputs = [ dateutil pyproj pytz requests pyyaml ];
 
   # 'tests' dir not included in pypy distribution archive.
   doCheck = false;