Files
Fabian Affolter 83d990326f python3Packages.gtfs-realtime-bindings: 2.1.0 -> 2.2.0
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:26 +02:00

36 lines
787 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
protobuf,
setuptools,
}:
buildPythonPackage rec {
pname = "gtfs-realtime-bindings";
version = "2.2.0";
pyproject = true;
src = fetchPypi {
pname = "gtfs_realtime_bindings";
inherit version;
hash = "sha256-HhhAdf9qrh+OjJGuKOuUavXltla3Q6Qae8o3gYeEiGs=";
};
build-system = [ setuptools ];
dependencies = [ protobuf ];
# Tests are not shipped, only a tarball for Java is present
doCheck = false;
pythonImportsCheck = [ "google.transit" ];
meta = {
description = "Python bindings generated from the GTFS Realtime protocol buffer spec";
homepage = "https://github.com/MobilityData/gtfs-realtime-bindings";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}