Unverified Commit 1530cb53 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python314Packages.renault-api: 0.5.2 -> 0.5.3 (#485144)

parents 9720dab6 6cf87e99
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -17,16 +17,16 @@
  typeguard,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "renault-api";
  version = "0.5.2";
  version = "0.5.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "hacf-fr";
    repo = "renault-api";
    tag = "v${version}";
    hash = "sha256-7ZvUg2Dgu9hSG1VXDT+YC6PBbylsR4d12ZR66UrPlyE=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-L5Ld6CyMapW2qX5YmExQzfWddQkQjSHgy7sz3OtL4TQ=";
  };

  build-system = [ poetry-core ];
@@ -53,16 +53,16 @@ buildPythonPackage rec {
    syrupy
    typeguard
  ]
  ++ lib.concatAttrValues optional-dependencies;
  ++ lib.flatten (builtins.attrValues finalAttrs.passthru.optional-dependencies);

  pythonImportsCheck = [ "renault_api" ];

  meta = {
    description = "Python library to interact with the Renault API";
    homepage = "https://github.com/hacf-fr/renault-api";
    changelog = "https://github.com/hacf-fr/renault-api/releases/tag/v${version}";
    changelog = "https://github.com/hacf-fr/renault-api/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "renault-api";
  };
}
})