Merge pull request #313813 from fabaff/life360-bump

python312Packages.life360: 6.0.1 -> 7.0.0
This commit is contained in:
Nick Cao 2024-05-22 21:13:35 -04:00 committed by GitHub
commit 17d2826889
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,31 +5,34 @@
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "life360";
version = "6.0.1";
format = "setuptools";
version = "7.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pnbruckner";
repo = pname;
repo = "life360";
rev = "refs/tags/v${version}";
hash = "sha256-USqSkjOHlH0K/RlRYpn/gz6dHW8/uEVpsc4HeUZ3Emg=";
hash = "sha256-+fvzZ1IsPsXLTcfR7vrE4n1nF7CdvoL4BzDJMsDBZVY=";
};
propagatedBuildInputs = [ aiohttp ];
build-system = [ setuptools ];
# Project has no tests
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "life360" ];
meta = with lib; {
description = "Python module to interact with Life360";
description = "Module to interact with Life360";
homepage = "https://github.com/pnbruckner/life360";
changelog = "https://github.com/pnbruckner/life360/releases/tag/v${version}";
license = licenses.mit;