depot/third_party/nixpkgs/pkgs/development/python-modules/pytrydan/default.nix

65 lines
1.2 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
httpx,
orjson,
poetry-core,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
respx,
rich,
syrupy,
tenacity,
typer,
}:
buildPythonPackage rec {
pname = "pytrydan";
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "dgomes";
repo = "pytrydan";
rev = "refs/tags/v${version}";
hash = "sha256-5sTHfxNV4JEonGke8ZZ/pXoLA15iCuJ/iSW1XwFMltg=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail " --cov=pytrydan --cov-report=term-missing:skip-covered" ""
'';
build-system = [ poetry-core ];
dependencies = [
httpx
orjson
rich
tenacity
typer
];
nativeCheckInputs = [
pytest-asyncio
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";
};
}