python3Packages.pydexcom: 0.2.3 -> 0.3.1

This commit is contained in:
Martin Weinelt
2023-09-27 15:33:57 +02:00
parent 5f0c1366f3
commit b05d0adbf8
@@ -1,20 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, setuptools-scm
, requests
}:
buildPythonPackage rec {
pname = "pydexcom";
version = "0.2.3";
version = "0.3.1";
format = "pyproject";
src = fetchFromGitHub {
owner = "gagebenne";
repo = pname;
rev = version;
hash = "sha256-ItDGnUUUTwCz4ZJtFVlMYjjoBPn2h8QZgLzgnV2T/Qk=";
rev = "refs/tags/${version}";
hash = "sha256-VZ8Y8W3oEQ3W8eubMbHLfQAXK8cL6+OTyBFwtEe0cBE=";
};
env.SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [ requests ];
# tests are interacting with the Dexcom API