From 725de57bce954bdc9ab300b5bd1e49e7e1813091 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 14 Apr 2023 23:51:24 +0200 Subject: [PATCH 1/2] python310Packages.cwl-utils: 0.23 -> 0.24 Diff: https://github.com/common-workflow-language/cwl-utils/compare/refs/tags/v0.23...v0.24 Changelog: https://github.com/common-workflow-language/cwl-utils/releases/tag/v0.24 --- pkgs/development/python-modules/cwl-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cwl-utils/default.nix b/pkgs/development/python-modules/cwl-utils/default.nix index 0c0618f9c3d0..99060c7f466d 100644 --- a/pkgs/development/python-modules/cwl-utils/default.nix +++ b/pkgs/development/python-modules/cwl-utils/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "cwl-utils"; - version = "0.23"; + version = "0.24"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "common-workflow-language"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-tr4QQ/p0jx/e5kHx4WSYfo06/qMNFyxIGsaAA8nBBoA="; + hash = "sha256-g8HnY5/UDmujijXStNRwKBGMZ3soUHKPIlpJdIQaAlE="; }; propagatedBuildInputs = [ From bfdbd5543cb472c8bbe0025901505d898126b19c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Apr 2023 00:34:47 +0200 Subject: [PATCH 2/2] python310Packages.cwl-upgrader: adjust inputs --- pkgs/development/python-modules/cwl-upgrader/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/cwl-upgrader/default.nix b/pkgs/development/python-modules/cwl-upgrader/default.nix index 9190cf882d1e..5f3ba48e0299 100644 --- a/pkgs/development/python-modules/cwl-upgrader/default.nix +++ b/pkgs/development/python-modules/cwl-upgrader/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchFromGitHub +, mypy-extensions , pytest-xdist , pytestCheckHook , pythonOlder @@ -30,6 +31,7 @@ buildPythonPackage rec { ''; propagatedBuildInputs = [ + mypy-extensions ruamel-yaml schema-salad ];