python310Packages.life360: 4.1.1 -> 5.0.0

This commit is contained in:
Fabian Affolter 2022-08-27 10:42:31 +02:00
parent 12f74551c7
commit ae1256a50d

View File

@ -1,14 +1,14 @@
{ lib { lib
, aiohttp
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, requests
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "life360"; pname = "life360";
version = "4.1.1"; version = "5.0.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -17,11 +17,11 @@ buildPythonPackage rec {
owner = "pnbruckner"; owner = "pnbruckner";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "v+j0DBWQb1JdOu+uxJAdWhzef5zB62z+NSQ+WxpsinA="; hash = "sha256-cIyN69rDuP83jjjqJ0Zc1XN8fVMbfhHKfKJNDqi6gdc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
requests aiohttp
]; ];
# Project has no tests # Project has no tests