python310Packages.pydexcom 0 -> 1 attrpath: python310Packages.pydexcom Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/lf8xdfz33k2v6cicw653xaw0q7bk9pv5-packages.json.drv building '/nix/store/lf8xdfz33k2v6cicw653xaw0q7bk9pv5-packages.json.drv'... Going to be running update for following packages: - python3.10-pydexcom-0.2.3 Press Enter key to continue... Running update for: - python3.10-pydexcom-0.2.3: UPDATING ... - python3.10-pydexcom-0.2.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pydexcom/default.nix b/pkgs/development/python-modules/pydexcom/default.nix index 412373f09a29..e21400dc709b 100644 --- a/pkgs/development/python-modules/pydexcom/default.nix +++ b/pkgs/development/python-modules/pydexcom/default.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "pydexcom"; - version = "0.2.3"; + version = "0.3.2"; src = fetchFromGitHub { owner = "gagebenne"; repo = pname; - rev = version; - hash = "sha256-ItDGnUUUTwCz4ZJtFVlMYjjoBPn2h8QZgLzgnV2T/Qk="; + rev = "refs/tags/${version}"; + hash = "sha256-46+Ml73F6EUbMwRJB93FD+No/g65RJwnCnFzH4Pb5ek="; }; propagatedBuildInputs = [ requests ]; No auto update branch exists Old version 0.2.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , setuptools , setuptools-scm , requests }: buildPythonPackage rec { pname = "pydexcom"; version = "0.3.1"; format = "pyproject"; src = fetchFromGitHub { owner = "gagebenne"; repo = pname; 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 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 ]; }; }