summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-01-03 22:57:40 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-01-03 22:57:40 +0000
commit448ae83326f2ca624a2b622c587193e74ea01560 (patch)
treeea9c42b265be891182743fe0f6b8f90e7b81acd7 /pkgs/development/python-modules
parent3b57908018dfb72fbacd60b25d5fd326f02087d5 (diff)
downloadnixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar.gz
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar.bz2
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar.lz
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar.xz
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.tar.zst
nixpkgs-448ae83326f2ca624a2b622c587193e74ea01560.zip
python37Packages.owslib: 0.20.0 -> 0.21.0
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 c82668008ea..92a78ce0cf3 100644
--- a/pkgs/development/python-modules/owslib/default.nix
+++ b/pkgs/development/python-modules/owslib/default.nix
@@ -1,11 +1,11 @@
 { lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest, pyyaml } :
 buildPythonPackage rec {
   pname = "OWSLib";
-  version = "0.20.0";
+  version = "0.21.0";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "334988857b260c8cdf1f6698d07eab61839c51acb52ee10eed1275439200a40e";
+    sha256 = "408d40b3a6a210bcb3f3609b607960eeedaa63ffd574dde7896906691c354814";
   };
 
   buildInputs = [ pytest ];