{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, pythonOlder, requests, requests-mock, setuptools, }: buildPythonPackage rec { pname = "losant-rest"; version = "1.19.8"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "Losant"; repo = "losant-rest-python"; rev = "refs/tags/v${version}"; hash = "sha256-CErC2Pwdw8CzV423uToysGaz92cBNyO3tLLuLozc0MU="; }; build-system = [ setuptools ]; dependencies = [ requests ]; nativeCheckInputs = [ pytestCheckHook requests-mock ]; pytestFlagsArray = [ "tests/platformrest_tests.py" ]; pythonImportsCheck = [ "platformrest" ]; meta = with lib; { description = "Python module for consuming the Losant IoT Platform API"; homepage = "https://github.com/Losant/losant-rest-python"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }