python312Packages.jira 3.5.2 -> 3.6.0 https://github.com/pycontribs/jira/releases attrpath: python312Packages.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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/hp2yilswfz12zbv0jmcb4mfgjx4agnzj-packages.json.drv building '/nix/store/hp2yilswfz12zbv0jmcb4mfgjx4agnzj-packages.json.drv'... Going to be running update for following packages: - python3.12-jira-3.5.2 Press Enter key to continue... Running update for: - python3.12-jira-3.5.2: UPDATING ... - python3.12-jira-3.5.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/jira/default.nix b/pkgs/development/python-modules/jira/default.nix index 9b8a808b878f..e1e324b10b9d 100644 --- a/pkgs/development/python-modules/jira/default.nix +++ b/pkgs/development/python-modules/jira/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { pname = "jira"; - version = "3.5.2"; + version = "3.6.0"; pyproject = true; disabled = pythonOlder "3.8"; @@ -30,7 +30,7 @@ buildPythonPackage rec { owner = "pycontribs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-9hzKN57OHi2be9C2mtHZU1KcpbcKxiiYDj9Vw7MxTK4="; + hash = "sha256-Wv6xjk1nyFIDKAypyQRlqFglzxe9Ems2ON3PEehUP/Q="; }; nativeBuildInputs = [ No auto update branch exists Old version 3.5.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , defusedxml , flaky , ipython , keyring , packaging , pyjwt , pytestCheckHook , pythonOlder , requests , requests-futures , requests-mock , requests-oauthlib , requests-toolbelt , setuptools , setuptools-scm , typing-extensions }: buildPythonPackage rec { pname = "jira"; version = "3.6.0"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pycontribs"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-Wv6xjk1nyFIDKAypyQRlqFglzxe9Ems2ON3PEehUP/Q="; }; nativeBuildInputs = [ setuptools setuptools-scm ]; propagatedBuildInputs = [ defusedxml packaging requests requests-oauthlib requests-toolbelt typing-extensions ]; passthru.optional-dependencies = { cli = [ ipython keyring ]; opt = [ # filemagic pyjwt # requests-jwt # requests-keyberos ]; async = [ requests-futures ]; }; nativeCheckInputs = [ 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"; changelog = "https://github.com/pycontribs/jira/releases/tag/${version}"; license = licenses.bsd2; maintainers = with maintainers; [ ]; mainProgram = "jirashell"; }; }