about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorIvan Mincik <ivan.mincik@gmail.com>2023-05-26 13:28:25 +0200
committerIvan Mincik <ivan.mincik@gmail.com>2023-05-26 13:32:12 +0200
commit0645048f9e8f2854b81c82563558d4da2355e11c (patch)
treeeb8d8fec822c2e497382b9cf857c9d7798d942f4 /pkgs/development
parent55358b47b4ecc27a07285a27c773ab5dc1390a82 (diff)
python3Packages.owslib: 0.28.1 -> 0.29.2
* disable new test failing due to missing network access
* set Geospatial team as maintainer
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/owslib/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix
index 5e2c2fba5cc12..d902af2c26f70 100644
--- a/pkgs/development/python-modules/owslib/default.nix
+++ b/pkgs/development/python-modules/owslib/default.nix
@@ -15,7 +15,7 @@
 
 buildPythonPackage rec {
   pname = "owslib";
-  version = "0.28.1";
+  version = "0.29.2";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
     owner = "geopython";
     repo = "OWSLib";
     rev = "refs/tags/${version}";
-    hash = "sha256-qiH6teCJ/4oftSRyBTtiJdlmJn02VwacU72dWi6OXdc=";
+    hash = "sha256-dbL4VdnPszwiDO+UjluuyqeBRMKojTnZPEFKEYiIWS0=";
   };
 
   postPatch = ''
@@ -61,6 +61,7 @@ buildPythonPackage rec {
     "test_wfs_200_remotemd"
     "test_wms_130_remotemd"
     "test_wmts_example_informatievlaanderen"
+    "test_opensearch_creodias"
   ] ++ lib.optionals stdenv.isDarwin [
     "test_ogcapi_records_pygeoapi"
     "test_wms_getfeatureinfo_130"
@@ -71,6 +72,6 @@ buildPythonPackage rec {
     homepage = "https://www.osgeo.org/projects/owslib/";
     changelog = "https://github.com/geopython/OWSLib/blob/${version}/CHANGES.rst";
     license = licenses.bsd3;
-    maintainers = with maintainers; [ ];
+    maintainers = teams.geospatial.members;
   };
 }