mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
Merge pull request #126067 from fabaff/garminconnect-aio
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, aiohttp
|
||||
, brotlipy
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, yarl
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "garminconnect-aio";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cyberjunky";
|
||||
repo = "python-garminconnect-aio";
|
||||
rev = version;
|
||||
sha256 = "0s2gpy5hciv9akqqhxy0d2ywp6jp9mmdngx34q7fq3xn668kcrhr";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
brotlipy
|
||||
yarl
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "garminconnect_aio" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to interact with Garmin Connect";
|
||||
homepage = "https://github.com/cyberjunky/python-garminconnect-aio";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user