depot/third_party/nixpkgs/pkgs/development/python-modules/renault-api/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

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.7";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "renault-api";
rev = "refs/tags/v${version}";
hash = "sha256-tke2bE+djV1N70meMOytYmbPmYDN8fU+Da81Mf6nNAI=";
};
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";
};
}