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

python312Packages.losant-rest: format with nixfmt

parent 5822fbf7
Loading
Loading
Loading
Loading
+13 −20
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, requests
, requests-mock
, setuptools
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  requests,
  requests-mock,
  setuptools,
}:

buildPythonPackage rec {
@@ -22,26 +23,18 @@ buildPythonPackage rec {
    hash = "sha256-sbNR95FhcRhgHh/ulLC8lL6EHal0BBK3wP6i29VElmY=";
  };

  build-system = [
    setuptools
  ];
  build-system = [ setuptools ];

  dependencies = [
    requests
  ];
  dependencies = [ requests ];

  nativeCheckInputs = [
    pytestCheckHook
    requests-mock
  ];

  pytestFlagsArray = [
    "tests/platformrest_tests.py"
  ];
  pytestFlagsArray = [ "tests/platformrest_tests.py" ];

  pythonImportsCheck = [
    "platformrest"
  ];
  pythonImportsCheck = [ "platformrest" ];

  meta = with lib; {
    description = "Python module for consuming the Losant IoT Platform API";