mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
d1bd49189b
Diff: https://github.com/dgomes/pytrydan/compare/refs/tags/v0.7.0...v0.8.1 Changelog: https://github.com/dgomes/pytrydan/blob/0.8.1/CHANGELOG.md
64 lines
1.1 KiB
Nix
64 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
httpx,
|
|
orjson,
|
|
poetry-core,
|
|
pytest-asyncio,
|
|
pytest-cov-stub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
respx,
|
|
rich,
|
|
syrupy,
|
|
tenacity,
|
|
typer,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytrydan";
|
|
version = "0.8.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dgomes";
|
|
repo = "pytrydan";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-OHC+Ul64BYCsgoFDxI1hPjBGkd/pQ0j0c9Pt5lWg1E0=";
|
|
};
|
|
|
|
pythonRelaxDeps = [ "tenacity" ];
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
httpx
|
|
orjson
|
|
rich
|
|
tenacity
|
|
typer
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytest-cov-stub
|
|
pytestCheckHook
|
|
respx
|
|
syrupy
|
|
];
|
|
|
|
pythonImportsCheck = [ "pytrydan" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to interface with V2C EVSE Trydan";
|
|
homepage = "https://github.com/dgomes/pytrydan";
|
|
changelog = "https://github.com/dgomes/pytrydan/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "pytrydan";
|
|
};
|
|
}
|