python312Packages.sfrbox-api: 0.0.9 -> 0.0.10 (#340134)

https://github.com/hacf-fr/sfrbox-api/releases/tag/v0.0.10
This commit is contained in:
R. RyanTM 2024-09-07 11:52:51 +10:00 committed by GitHub
parent 68b67cf3c6
commit cd006f904d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,16 +15,16 @@
buildPythonPackage rec {
pname = "sfrbox-api";
version = "0.0.9";
version = "0.0.10";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "hacf-fr";
repo = "sfrbox-api";
rev = "refs/tags/v${version}";
hash = "sha256-rMfX9vA8IuWxXvVs4WYNHO6neeoie/3gABwhXyJoAF8=";
hash = "sha256-xvtusgqCseXAmiPQBFFZnRS9KmuhzHhZUAj5aaqyFrE=";
};
pythonRelaxDeps = [
@ -32,9 +32,9 @@ buildPythonPackage rec {
"pydantic"
];
nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];
propagatedBuildInputs = [
dependencies = [
defusedxml
httpx
pydantic
@ -54,10 +54,10 @@ buildPythonPackage rec {
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 ];
mainProgram = "sfrbox-api";
};
}