python310Packages.jira 0 -> 1 attrpath: python310Packages.jira 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/ibv7y337bkmlp1lzbb2ywmb1h5228d3s-packages.json.drv building '/nix/store/ibv7y337bkmlp1lzbb2ywmb1h5228d3s-packages.json.drv'... Going to be running update for following packages: - python3.10-jira-3.4.0 Press Enter key to continue... Running update for: - python3.10-jira-3.4.0: UPDATING ... - python3.10-jira-3.4.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/jira/default.nix b/pkgs/development/python-modules/jira/default.nix index 264bef920ea..80b2bd1a4ba 100644 --- a/pkgs/development/python-modules/jira/default.nix +++ b/pkgs/development/python-modules/jira/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "jira"; - version = "3.4.0"; + version = "3.4.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "pycontribs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-XyMywnuJOGSXWsMNbwNbMaOeAa9bosBg6rvfNKw77Ik="; + hash = "sha256-EZCvYpcQ1dSsXDhipUalrHEG5SYOochktYrBdIoNDRo="; }; nativeBuildInputs = [ No auto update branch exists Old version 3.4.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , defusedxml , flaky , keyring , requests-mock , requests-oauthlib , requests-toolbelt , setuptools-scm , setuptools-scm-git-archive , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "jira"; version = "3.4.1"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "pycontribs"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-EZCvYpcQ1dSsXDhipUalrHEG5SYOochktYrBdIoNDRo="; }; nativeBuildInputs = [ setuptools-scm setuptools-scm-git-archive ]; SETUPTOOLS_SCM_PRETEND_VERSION = version; propagatedBuildInputs = [ defusedxml keyring requests-oauthlib requests-toolbelt ]; checkInputs = [ flaky pytestCheckHook requests-mock ]; postPatch = '' substituteInPlace setup.cfg \ --replace "--cov-report=xml --cov jira" "" ''; pythonImportsCheck = [ "jira" ]; # impure tests because of connectivity attempts to jira servers doCheck = false; meta = with lib; { description = "Library to interact with the JIRA REST API"; homepage = "https://github.com/pycontribs/jira"; license = licenses.bsd2; maintainers = with maintainers; [ globin ]; }; }