11 buildPythonPackage rec {
16 disabled = pythonOlder "3.9";
18 src = fetchFromGitHub {
21 rev = "refs/tags/${version}";
22 hash = "sha256-cf3AhqaA5aij2NCeFqruoeE0ovJSgZgEnVHcE3iXJ1s=";
30 dependencies = [ requests ];
32 # Tests are interacting with the Dexcom API
35 pythonImportsCheck = [ "pydexcom" ];
38 description = "Python API to interact with Dexcom Share service";
39 homepage = "https://github.com/gagebenne/pydexcom";
40 changelog = "https://github.com/gagebenne/pydexcom/releases/tag/${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ fab ];