From c29d1a5cba6ce7dd19965bdb0b713c7acd080a50 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 11 Apr 2024 09:27:47 +0200 Subject: [PATCH] python312Packages.bring-api: rename, update URLs, etc. --- .../development/python-modules/bring-api/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/bring-api/default.nix b/pkgs/development/python-modules/bring-api/default.nix index 2912e26f5c80..466ab568728b 100644 --- a/pkgs/development/python-modules/bring-api/default.nix +++ b/pkgs/development/python-modules/bring-api/default.nix @@ -7,7 +7,7 @@ }: buildPythonPackage rec { - pname = "homeassistant-bring-api"; + pname = "bring-api"; version = "0.5.6"; pyproject = true; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "miaucl"; - repo = "homeassistant-bring-api"; + repo = "bring-api"; rev = "refs/tags/${version}"; hash = "sha256-vfc4xKLeGF2FuBFwqU99qbkUDBK5Uz66S4F2ODRDPa8="; }; @@ -32,13 +32,13 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ - "homeassistant_bring_api" + "bring_api" ]; meta = with lib; { - description = "Module to access the Bring! shopping lists API with Home Assistant"; - homepage = "https://github.com/miaucl/homeassistant-bring-api"; - changelog = "https://github.com/miaucl/homeassistant-bring-api/blob/${version}/CHANGELOG.md"; + description = "Module to access the Bring! shopping lists API"; + homepage = "https://github.com/miaucl/bring-api"; + changelog = "https://github.com/miaucl/bring-api/blob/${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };