Unverified Commit 4c14e1c5 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python314Packages.pydexcom: 0.5.0 -> 0.5.1 (#484342)

parents 125d3ad8 bd8ed7be
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@
  requests,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pydexcom";
  version = "0.5.0";
  version = "0.5.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "gagebenne";
    repo = "pydexcom";
    tag = version;
    hash = "sha256-IqSZZHe5epcgO2uoIsGkNaac3+UplHzqEcFWTzwAqPg=";
    tag = finalAttrs.version;
    hash = "sha256-u94OI45PmofPLpuJUpjbvGLla+mJEHy1t6/4fiI6+zc=";
  };

  build-system = [
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python API to interact with Dexcom Share service";
    homepage = "https://github.com/gagebenne/pydexcom";
    changelog = "https://github.com/gagebenne/pydexcom/releases/tag/${src.tag}";
    changelog = "https://github.com/gagebenne/pydexcom/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})