Unverified Commit cd006f90 authored by R. RyanTM's avatar R. RyanTM Committed by GitHub
Browse files

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

parent 68b67cf3
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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";
  };
}