Unverified Commit 47c36220 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #217377 from fabaff/eiswarnung-bump

python310Packages.eiswarnung: 1.1.1 -> 1.2.0
parents ba3b862f cbb8f853
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -7,12 +7,13 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, pytz
, yarl
}:

buildPythonPackage rec {
  pname = "eiswarnung";
  version = "1.1.1";
  version = "1.2.0";
  format = "pyproject";

  disabled = pythonOlder "3.9";
@@ -21,7 +22,7 @@ buildPythonPackage rec {
    owner = "klaasnicolaas";
    repo = "python-eiswarnung";
    rev = "refs/tags/v${version}";
    hash = "sha256-sMR16if2Q+lK+ilnVNYVootBN2LFwBQLlZFkoX+oS/g=";
    hash = "sha256-PVFAy34+UfNQNdzVdfvNiySrCTaKGuepnTINZYkOsuo=";
  };

  nativeBuildInputs = [
@@ -30,6 +31,7 @@ buildPythonPackage rec {

  propagatedBuildInputs = [
    aiohttp
    pytz
    yarl
  ];

@@ -52,6 +54,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Module for getting Eiswarning API forecasts";
    homepage = "https://github.com/klaasnicolaas/python-eiswarnung";
    changelog = "https://github.com/klaasnicolaas/python-eiswarnung/releases/tag/v${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };