From 55963bf96c43917538418ce53ee25214677b4142 Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Sun, 4 May 2025 08:12:04 -0500 Subject: [PATCH 1/2] python3Packages.atlassian-python-api: modernize --- .../development/python-modules/atlassian-python-api/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/atlassian-python-api/default.nix b/pkgs/development/python-modules/atlassian-python-api/default.nix index c9bc2f65a692..a59a996f52ee 100644 --- a/pkgs/development/python-modules/atlassian-python-api/default.nix +++ b/pkgs/development/python-modules/atlassian-python-api/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { hash = "sha256-m8B6t9tTlef8cdsh/wnsc0iyNLsB0RYjUhq/bA9MeII="; }; - propagatedBuildInputs = [ + dependencies = [ beautifulsoup4 deprecated jmespath From 75d912f07c956617fb9e31dc3484f45e1c77259f Mon Sep 17 00:00:00 2001 From: Morgan Helton Date: Sun, 4 May 2025 08:12:21 -0500 Subject: [PATCH 2/2] python3Packages.atlassian-python-api: 3.41.21 -> 4.0.4 --- .../python-modules/atlassian-python-api/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/atlassian-python-api/default.nix b/pkgs/development/python-modules/atlassian-python-api/default.nix index a59a996f52ee..5f1192f21c1a 100644 --- a/pkgs/development/python-modules/atlassian-python-api/default.nix +++ b/pkgs/development/python-modules/atlassian-python-api/default.nix @@ -11,13 +11,14 @@ requests-kerberos, requests-oauthlib, six, + typing-extensions, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "atlassian-python-api"; - version = "3.41.21"; + version = "4.0.4"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -26,7 +27,7 @@ buildPythonPackage rec { owner = "atlassian-api"; repo = "atlassian-python-api"; tag = version; - hash = "sha256-m8B6t9tTlef8cdsh/wnsc0iyNLsB0RYjUhq/bA9MeII="; + hash = "sha256-iF4gjF/5QbdjJKCWMdElc+gdIy2+D7TV6gpoPZsTv14="; }; dependencies = [ @@ -39,6 +40,7 @@ buildPythonPackage rec { requests-kerberos requests-oauthlib six + typing-extensions ]; nativeCheckInputs = [ pytestCheckHook ];