python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / pywaze / default.nix
blob081db245b8c220e18cb24e28d79dbe99efee90c6
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   hatchling,
6   httpx,
7   pytest-asyncio,
8   pytestCheckHook,
9   pythonOlder,
10   respx,
13 buildPythonPackage rec {
14   pname = "pywaze";
15   version = "1.1.0";
16   pyproject = true;
18   disabled = pythonOlder "3.11";
20   src = fetchFromGitHub {
21     owner = "eifinger";
22     repo = "pywaze";
23     rev = "refs/tags/v${version}";
24     hash = "sha256-XE+VdxUjq8KBSIU6rUlBweKEkZD3gqJuy9J4u9JVy7Q=";
25   };
27   postPatch = ''
28     substituteInPlace pyproject.toml \
29       --replace-fail "--cov --cov-report term-missing --cov=src/pywaze " ""
30   '';
32   build-system = [ hatchling ];
34   dependencies = [ httpx ];
36   nativeCheckInputs = [
37     pytest-asyncio
38     pytestCheckHook
39     respx
40   ];
42   pythonImportsCheck = [ "pywaze" ];
44   meta = with lib; {
45     description = "Module for calculating WAZE routes and travel times";
46     homepage = "https://github.com/eifinger/pywaze";
47     changelog = "https://github.com/eifinger/pywaze/releases/tag/v${version}";
48     license = licenses.mit;
49     maintainers = with maintainers; [ fab ];
50   };