about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydexcom
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-07 19:13:51 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-07 19:13:51 +0100
commit5907a0015e8307b4d9769e37b60c42dfd259a1ea (patch)
tree4407db674e80252bd26e73f62d1a7c437e0fc57b /pkgs/development/python-modules/pydexcom
parent210b6509eda2a217adb8b2ec2eebe95c33ad146e (diff)
python3Packages.pydexcom: init at 0.2.0
Diffstat (limited to 'pkgs/development/python-modules/pydexcom')
-rw-r--r--pkgs/development/python-modules/pydexcom/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pydexcom/default.nix b/pkgs/development/python-modules/pydexcom/default.nix
new file mode 100644
index 0000000000000..f83d3cbf1102b
--- /dev/null
+++ b/pkgs/development/python-modules/pydexcom/default.nix
@@ -0,0 +1,30 @@
+{ 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 ];
+  };
+}