From 7cd1cb9a74e8956d1d7784121485e42a41e67085 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 21 Dec 2025 12:12:22 +0000 Subject: [PATCH 1/2] python3Packages.cwl-upgrader: 1.2.12 -> 1.2.14 --- pkgs/development/python-modules/cwl-upgrader/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index b43e28710373..f875759cda55 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "cwl-upgrader"; - version = "1.2.12"; + version = "1.2.14"; pyproject = true; disabled = pythonOlder "3.8"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "common-workflow-language"; repo = "cwl-upgrader"; tag = "v${version}"; - hash = "sha256-cfEd1XAu31u+NO27d3RNA5lhCpRpYK8NeaCxhQ/1GNU="; + hash = "sha256-bkICax7HIEo8ypttXgDmCl82JfVkV2T11fLRK1/0hz8="; }; postPatch = '' From 989761275924946b87fc94d4f7078083cff9eac4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 Dec 2025 21:34:32 +0100 Subject: [PATCH 2/2] python313Packages.cwl-upgrader: modernize --- pkgs/development/python-modules/cwl-upgrader/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index f875759cda55..6dccb78314b6 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -5,7 +5,6 @@ mypy-extensions, pytest-xdist, pytestCheckHook, - pythonOlder, ruamel-yaml, schema-salad, setuptools, @@ -16,8 +15,6 @@ buildPythonPackage rec { version = "1.2.14"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "common-workflow-language"; repo = "cwl-upgrader"; @@ -48,10 +45,10 @@ buildPythonPackage rec { meta = { description = "Library to upgrade CWL syntax to a newer version"; - mainProgram = "cwl-upgrader"; homepage = "https://github.com/common-workflow-language/cwl-upgrader"; - changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases/tag/v${version}"; + changelog = "https://github.com/common-workflow-language/cwl-upgrader/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; + mainProgram = "cwl-upgrader"; }; }