python310Packages.markdown-include 0 -> 1 attrpath: python310Packages.markdown-include 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/s0jmxrqrspy3ijlx0d8nx6bkj7jw6mnh-packages.json.drv building '/nix/store/s0jmxrqrspy3ijlx0d8nx6bkj7jw6mnh-packages.json.drv'... Going to be running update for following packages: - python3.10-markdown-include-0.7.0 Press Enter key to continue... Running update for: - python3.10-markdown-include-0.7.0: UPDATING ... - python3.10-markdown-include-0.7.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/markdown-include/default.nix b/pkgs/development/python-modules/markdown-include/default.nix index 091809d8314..5d65ef9047b 100644 --- a/pkgs/development/python-modules/markdown-include/default.nix +++ b/pkgs/development/python-modules/markdown-include/default.nix @@ -6,15 +6,15 @@ buildPythonPackage rec { pname = "markdown-include"; - version = "0.7.0"; + version = "0.8.0"; format = "setuptools"; # only wheel on pypi src = fetchFromGitHub { owner = "cmacmackin"; repo = pname; - rev = "v${version}"; - hash = "sha256-2pC0K/Z5l7q6sx4FSM4Pi1/5bt1wLZsqOmcbnE47rVs="; + rev = "refs/tags/v${version}"; + hash = "sha256-wTGgxvM3/h+6plUcheeMSkpk1we7pwuWHurkDkmbnPY="; }; propagatedBuildInputs = [ No auto update branch exists Old version 0.7.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , markdown , setuptools-scm }: buildPythonPackage rec { pname = "markdown-include"; version = "0.8.0"; format = "setuptools"; # only wheel on pypi src = fetchFromGitHub { owner = "cmacmackin"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-wTGgxvM3/h+6plUcheeMSkpk1we7pwuWHurkDkmbnPY="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ markdown ]; pythonImportsCheck = [ "markdown_include" ]; doCheck = false; # no tests meta = with lib; { description = "Extension to Python-Markdown which provides an include function"; homepage = "https://github.com/cmacmackin/markdown-include"; license = licenses.gpl3Plus; maintainers = with maintainers; [ hexa ]; }; }