depot/third_party/nixpkgs/pkgs/development/python-modules/renault-api/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

68 lines
1.3 KiB
Nix

{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
click,
cryptography,
dateparser,
fetchFromGitHub,
marshmallow-dataclass,
poetry-core,
pyjwt,
pythonOlder,
pytest-asyncio,
pytestCheckHook,
tabulate,
typeguard,
}:
buildPythonPackage rec {
pname = "renault-api";
version = "0.2.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "renault-api";
rev = "refs/tags/v${version}";
hash = "sha256-+QqiD4mMfzlHmSiriaS0JzbMdOGCG7cg/xv6zJaPSOU=";
};
build-system = [ poetry-core ];
dependencies = [
aiohttp
cryptography
marshmallow-dataclass
pyjwt
];
optional-dependencies = {
cli = [
click
dateparser
tabulate
];
};
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
typeguard
] ++ lib.flatten (lib.attrValues optional-dependencies);
pythonImportsCheck = [ "renault_api" ];
meta = with lib; {
description = "Python library to interact with the Renault API";
homepage = "https://github.com/hacf-fr/renault-api";
changelog = "https://github.com/hacf-fr/renault-api/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "renault-api";
};
}