Commit 0cfb3dd6 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.python-opendata-transport: 0.3.0 -> 0.4.0

parent 03f04550
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, aiohttp
, urllib3
, pythonOlder
, urllib3
}:

buildPythonPackage rec {
  pname = "python-opendata-transport";
  version = "0.3.0";
  version = "0.4.0";
  format = "setuptools";

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchPypi {
    pname = "python_opendata_transport";
    inherit version;
    hash = "sha256-CpzMMp2C3UOiUna9EcUucD/PKv7AZlkaU8QJfWntoi8=";
    hash = "sha256-2lEKPu5vjyqNUqz1NGmZ5b6YP3oWnCgoubDdiQCbdps=";
  };

  propagatedBuildInputs = [
@@ -24,7 +24,7 @@ buildPythonPackage rec {
    urllib3
  ];

  # no tests are present
  # No tests are present
  doCheck = false;

  pythonImportsCheck = [
@@ -34,6 +34,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python client for interacting with transport.opendata.ch";
    homepage = "https://github.com/home-assistant-ecosystem/python-opendata-transport";
    changelog = "https://github.com/home-assistant-ecosystem/python-opendata-transport/releases/tag/${version}";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };