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

Changelog: https://github.com/home-assistant-ecosystem/python-opendata-transport/releases/tag/0.4.0
This commit is contained in:
Fabian Affolter
2023-11-20 22:19:36 +01:00
parent 03f0455051
commit 0cfb3dd635
@@ -1,22 +1,22 @@
{ 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 ];
};