vscode-extensions.github.copilot{*}: bump (#364729)
[NixPkgs.git] / pkgs / development / python-modules / py-nextbusnext / default.nix
blob2eea298d8bf3a66aa8b9398da9db932c80dd13cf
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   requests,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "py-nextbusnext";
12   version = "2.0.5";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchFromGitHub {
18     owner = "ViViDboarder";
19     repo = "py_nextbus";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-/pzlxYGXqWix11G7DsHgwkCrSQFT/N1boKcBJ1YpE0A=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ requests ];
28   pythonImportsCheck = [ "py_nextbus" ];
30   # upstream has no tests
31   doCheck = false;
33   meta = with lib; {
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 ];
38   };