2021-01-09 19:53:22 +00:00
|
|
|
{ lib
|
|
|
|
, aiohttp
|
|
|
|
, aresponses
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
2021-01-23 20:27:17 +00:00
|
|
|
, poetry-core
|
2021-01-09 19:53:22 +00:00
|
|
|
, pylint
|
|
|
|
, pytest-aiohttp
|
|
|
|
, pytest-asyncio
|
|
|
|
, pytestCheckHook
|
2021-07-02 10:15:37 +01:00
|
|
|
, pythonOlder
|
2021-01-09 19:53:22 +00:00
|
|
|
}:
|
2021-01-23 20:27:17 +00:00
|
|
|
|
2021-01-09 19:53:22 +00:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pytile";
|
2022-02-04 10:19:52 +00:00
|
|
|
version = "2022.02.0";
|
2021-07-02 10:15:37 +01:00
|
|
|
format = "pyproject";
|
2021-11-09 08:40:30 +00:00
|
|
|
|
2022-01-25 17:48:34 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2021-01-09 19:53:22 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bachya";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2022-02-04 10:19:52 +00:00
|
|
|
sha256 = "sha256-IGjM9yU/3EjO9sV1ZZUX7RUL/a6CcMPzANhVMTcbZGU=";
|
2021-01-09 19:53:22 +00:00
|
|
|
};
|
|
|
|
|
2021-07-02 10:15:37 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
];
|
2021-01-09 19:53:22 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
|
|
|
pylint
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
aresponses
|
|
|
|
pytest-aiohttp
|
|
|
|
pytest-asyncio
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2021-07-02 10:15:37 +01:00
|
|
|
disabledTestPaths = [
|
|
|
|
# Ignore the examples as they are prefixed with test_
|
|
|
|
"examples/"
|
|
|
|
];
|
|
|
|
|
2021-11-09 08:40:30 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"pytile"
|
|
|
|
];
|
2021-01-09 19:53:22 +00:00
|
|
|
|
2021-01-10 07:37:05 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2021-01-09 19:53:22 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = " Python API for Tile Bluetooth trackers";
|
|
|
|
longDescription = ''
|
|
|
|
pytile is a simple Python library for retrieving information on Tile
|
|
|
|
Bluetooth trackers (including last location and more).
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/bachya/pytile";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|