c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
45 lines
942 B
Nix
45 lines
942 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, setuptools
|
|
, pythonOlder
|
|
, aiohttp
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tesla-fleet-api";
|
|
version = "0.4.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Teslemetry";
|
|
repo = "python-tesla-fleet-api";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4IXLtQyEi4R7aakaLCl9jpm3D/Es3wLIwigSTYK12kg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
];
|
|
|
|
# Module has no tests
|
|
doCheck =false;
|
|
|
|
pythonImportsCheck = [
|
|
"tesla_fleet_api"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library for Tesla Fleet API and Teslemetry";
|
|
homepage = "https://github.com/Teslemetry/python-tesla-fleet-api";
|
|
changelog = "https://github.com/Teslemetry/python-tesla-fleet-api/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|