Commit a993ce9f authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pywaze: format with nixfmt

parent f55375f5
Loading
Loading
Loading
Loading
+13 −18
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, hatchling
, httpx
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, respx
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  httpx,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  respx,
}:

buildPythonPackage rec {
@@ -28,13 +29,9 @@ buildPythonPackage rec {
      --replace-fail "--cov --cov-report term-missing --cov=src/pywaze " ""
  '';

  build-system = [
    hatchling
  ];
  build-system = [ hatchling ];

  dependencies = [
    httpx
  ];
  dependencies = [ httpx ];

  nativeCheckInputs = [
    pytest-asyncio
@@ -42,9 +39,7 @@ buildPythonPackage rec {
    respx
  ];

  pythonImportsCheck = [
    "pywaze"
  ];
  pythonImportsCheck = [ "pywaze" ];

  meta = with lib; {
    description = "Module for calculating WAZE routes and travel times";