at 22.05-pre 37 lines 743 B view raw
1{ lib 2, aiohttp 3, brotlipy 4, buildPythonPackage 5, fetchFromGitHub 6, yarl 7}: 8 9buildPythonPackage rec { 10 pname = "garminconnect-aio"; 11 version = "0.1.4"; 12 13 src = fetchFromGitHub { 14 owner = "cyberjunky"; 15 repo = "python-garminconnect-aio"; 16 rev = version; 17 sha256 = "0s2gpy5hciv9akqqhxy0d2ywp6jp9mmdngx34q7fq3xn668kcrhr"; 18 }; 19 20 propagatedBuildInputs = [ 21 aiohttp 22 brotlipy 23 yarl 24 ]; 25 26 # Project has no tests 27 doCheck = false; 28 29 pythonImportsCheck = [ "garminconnect_aio" ]; 30 31 meta = with lib; { 32 description = "Python module to interact with Garmin Connect"; 33 homepage = "https://github.com/cyberjunky/python-garminconnect-aio"; 34 license = licenses.mit; 35 maintainers = with maintainers; [ fab ]; 36 }; 37}