mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
Merge pull request #89451 from tviti/fix-owslib
owslib: add pyyaml as a runtime dep
This commit is contained in:
commit
9a64d6bf45
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue