Merge pull request #236038 from fabaff/dwdwfsapi-bump

python311Packages.dwdwfsapi: 1.0.6 -> 1.0.7
This commit is contained in:
Fabian Affolter 2023-06-06 09:27:37 +02:00 committed by GitHub
commit 96bcc42c67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,14 +8,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dwdwfsapi"; pname = "dwdwfsapi";
version = "1.0.6"; version = "1.0.7";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-zeSV2acjtSWUYnrMjEBtrSPlXRvrNQRX5SYPYHnaOy0="; hash = "sha256-7le1F+581JwrBX/C1aaqsDaSpIt0yNsNKiGnJtHUg5s=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -33,6 +33,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Python client to retrieve data provided by DWD via their geoserver WFS API"; description = "Python client to retrieve data provided by DWD via their geoserver WFS API";
homepage = "https://github.com/stephan192/dwdwfsapi"; homepage = "https://github.com/stephan192/dwdwfsapi";
changelog = "https://github.com/stephan192/dwdwfsapi/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ elohmeier ]; maintainers = with maintainers; [ elohmeier ];
}; };