depot/third_party/nixpkgs/pkgs/development/python-modules/sfrbox-api/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

68 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, click
, defusedxml
, fetchFromGitHub
, httpx
, poetry-core
, pydantic
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, respx
}:
buildPythonPackage rec {
pname = "sfrbox-api";
version = "0.0.9";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "sfrbox-api";
rev = "refs/tags/v${version}";
hash = "sha256-rMfX9vA8IuWxXvVs4WYNHO6neeoie/3gABwhXyJoAF8=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'pydantic = ">=1.10.2"' 'pydantic = "*"'
'';
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
defusedxml
httpx
pydantic
];
passthru.optional-dependencies = {
cli = [
click
];
};
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
respx
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pythonImportsCheck = [
"sfrbox_api"
];
meta = with lib; {
description = "Module for the SFR Box API";
mainProgram = "sfrbox-api";
homepage = "https://github.com/hacf-fr/sfrbox-api";
changelog = "https://github.com/hacf-fr/sfrbox-api/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}