python3Packages.pynina: 0.3.5 -> 0.3.6 (#405996)

This commit is contained in:
Fabian Affolter 2025-05-11 09:58:32 +02:00 committed by GitHub
commit 71623df396
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,20 +3,17 @@
aiohttp,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pynina";
version = "0.3.5";
version = "0.3.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-M+0gujriblTDj/qDmBnC4DlKjlZbbStsr7tep5HeNlg=";
hash = "sha256-w5iJXmOd0fqWIZnVG6zDop1t2h4B+4v0/EuwgS00LkA=";
};
pythonRelaxDeps = [ "aiohttp" ];
@ -33,7 +30,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python API wrapper to retrieve warnings from the german NINA app";
homepage = "https://gitlab.com/DeerMaximum/pynina";
changelog = "https://gitlab.com/DeerMaximum/pynina/-/releases/${version}";
changelog = "https://gitlab.com/DeerMaximum/pynina/-/releases/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};