forked from mirrors/nixpkgs
python3Packages.garminconnect-ha: init at 0.1.6
This commit is contained in:
parent
ff06400b7d
commit
fa7c441c33
33
pkgs/development/python-modules/garminconnect-ha/default.nix
Normal file
33
pkgs/development/python-modules/garminconnect-ha/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "garminconnect-ha";
|
||||
version = "0.1.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cyberjunky";
|
||||
repo = "python-garminconnect-ha";
|
||||
rev = version;
|
||||
sha256 = "0ngas6zikhpja1cdkq64m9pjm4b0z3qaj9g3x88mggy60jsxm1d7";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "garminconnect_ha" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Minimal Garmin Connect Python 3 API wrapper for Home Assistant";
|
||||
homepage = "https://github.com/cyberjunky/python-garminconnect-ha";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -2706,6 +2706,8 @@ in {
|
|||
|
||||
garminconnect-aio = callPackage ../development/python-modules/garminconnect-aio { };
|
||||
|
||||
garminconnect-ha = callPackage ../development/python-modules/garminconnect-ha { };
|
||||
|
||||
gast = callPackage ../development/python-modules/gast { };
|
||||
|
||||
garages-amsterdam = callPackage ../development/python-modules/garages-amsterdam { };
|
||||
|
|
Loading…
Reference in a new issue