Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / life360 / default.nix
bloba2d958bc1083c4493b63dc593155321e0af3c55a
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pytestCheckHook
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "life360";
11   version = "6.0.1";
12   format = "setuptools";
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "pnbruckner";
18     repo = pname;
19     rev = "refs/tags/v${version}";
20     hash = "sha256-USqSkjOHlH0K/RlRYpn/gz6dHW8/uEVpsc4HeUZ3Emg=";
21   };
23   propagatedBuildInputs = [
24     aiohttp
25   ];
27   # Project has no tests
28   doCheck = false;
30   pythonImportsCheck = [
31     "life360"
32   ];
34   meta = with lib; {
35     description = "Python module to interact with Life360";
36     homepage = "https://github.com/pnbruckner/life360";
37     changelog = "https://github.com/pnbruckner/life360/releases/tag/v${version}";
38     license = licenses.mit;
39     maintainers = with maintainers; [ fab ];
40   };