python312Packages.losant-rest: format with nixfmt

This commit is contained in:
Fabian Affolter
2024-05-14 15:40:23 +02:00
parent 5822fbf779
commit d0b66542a2
@@ -1,11 +1,12 @@
{ 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";