mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
31 lines
675 B
Nix
31 lines
675 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, requests
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pydexcom";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gagebenne";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "19h7r0qbsqd6k6g4nz6z3k9kdmk0sx5zpsrgxwnhsff5fqi0y2ls";
|
|
};
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
# tests are interacting with the Dexcom API
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "pydexcom" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python API to interact with Dexcom Share service";
|
|
homepage = "https://github.com/gagebenne/pydexcom";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|