python310Packages.gtfs-realtime-bindings: 0.0.7 -> 1.0.0

This commit is contained in:
Fabian Affolter 2023-04-02 22:58:21 +02:00
parent 0553481d35
commit cc84572e34

View File

@ -7,15 +7,14 @@
buildPythonPackage rec {
pname = "gtfs-realtime-bindings";
version = "0.0.7";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "1vav7ah6gpkpi44rk202bwpl345rydg6n9zibzx5p7gcsblcwd45";
extension = "zip";
sha256 = "sha256-LoztiQRADMk6t+hSCttpNM+mAe2sxvWT/Cy0RIZiu0c=";
};
propagatedBuildInputs = [
@ -25,11 +24,13 @@ buildPythonPackage rec {
# Tests are not shipped, only a tarball for Java is present
doCheck = false;
pythonImportsCheck = [ "google.transit" ];
pythonImportsCheck = [
"google.transit"
];
meta = with lib; {
description = "Python bindings generated from the GTFS Realtime protocol buffer spec";
homepage = "https://github.com/andystewart999/TransportNSW";
homepage = "https://github.com/MobilityData/gtfs-realtime-bindings";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};