From 2c702eec395c744a1f33f1a7449db6b5a6730711 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 5 Apr 2025 14:54:56 +0200 Subject: [PATCH] python312Packages.owslib: 0.32.1 -> 0.33.0 Changelog: https://github.com/geopython/OWSLib/releases/tag/0.33.0 --- pkgs/development/python-modules/owslib/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix index f0009dc378f7..233e0891e9a0 100644 --- a/pkgs/development/python-modules/owslib/default.nix +++ b/pkgs/development/python-modules/owslib/default.nix @@ -4,6 +4,7 @@ fetchFromGitHub, lxml, pytest-cov-stub, + pytest-httpserver, pytestCheckHook, python-dateutil, pythonOlder, @@ -14,7 +15,7 @@ buildPythonPackage rec { pname = "owslib"; - version = "0.32.1"; + version = "0.33.0"; pyproject = true; disabled = pythonOlder "3.10"; @@ -23,7 +24,7 @@ buildPythonPackage rec { owner = "geopython"; repo = "OWSLib"; tag = version; - hash = "sha256-yQ/QDTTZLgBoTpa+ssvVPvDotBo6HXMvM2ZgTtbzOcA="; + hash = "sha256-Qp8Ow39r6u/6h9+2Qa7WMzrs6Lyek07tWYtxtvVgM/Y="; }; postPatch = '' @@ -43,6 +44,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-cov-stub + pytest-httpserver pytestCheckHook ];