10 buildPythonPackage rec {
11 pname = "py-nextbusnext";
15 disabled = pythonOlder "3.9";
17 src = fetchFromGitHub {
18 owner = "ViViDboarder";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-/pzlxYGXqWix11G7DsHgwkCrSQFT/N1boKcBJ1YpE0A=";
24 build-system = [ setuptools ];
26 dependencies = [ requests ];
28 pythonImportsCheck = [ "py_nextbus" ];
30 # upstream has no tests
34 description = "Minimalistic Python client for the NextBus public API";
35 homepage = "https://github.com/ViViDboarder/py_nextbus";
36 license = licenses.mit;
37 maintainers = with maintainers; [ dotlambda ];