Unverified Commit 6b9dde88 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.python-opendata-transport: 0.4.0 -> 0.5.0 (#345194)

parents 419cd530 fb6389cb
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -10,20 +10,20 @@

buildPythonPackage rec {
  pname = "python-opendata-transport";
  version = "0.4.0";
  version = "0.5.0";
  pyproject = true;

  disabled = pythonOlder "3.9";
  disabled = pythonOlder "3.11";

  src = fetchPypi {
    pname = "python_opendata_transport";
    inherit version;
    hash = "sha256-2lEKPu5vjyqNUqz1NGmZ5b6YP3oWnCgoubDdiQCbdps=";
    hash = "sha256-CtYsks7Q33ww0Mr9ehhq7+fJhCsj4gxKytiCZ6G4Aqc=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    aiohttp
    urllib3
  ];
@@ -37,7 +37,7 @@ buildPythonPackage rec {
    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 ];
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}