Skip to content

Commit

Permalink
Merge pull request #268811 from fabaff/python-opendata-transport-bump
Browse files Browse the repository at this point in the history
python311Packages.python-opendata-transport: 0.3.0 -> 0.4.0
  • Loading branch information
natsukium authored Nov 21, 2023
2 parents 5448ed6 + e212445 commit dc74da3
Showing 1 changed file with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@
{ lib
, aiohttp
, buildPythonPackage
, fetchPypi
, aiohttp
, urllib3
, pythonOlder
, setuptools
, urllib3
}:

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

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

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

nativeBuildInputs = [
setuptools
];

propagatedBuildInputs = [
aiohttp
urllib3
];

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

pythonImportsCheck = [
Expand All @@ -34,6 +39,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 ];
};
Expand Down

0 comments on commit dc74da3

Please sign in to comment.