From c2181bedc43e49694b04a154707ed2e4ca467126 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 12 Apr 2024 09:21:14 +0200 Subject: [PATCH] python312Packages.cwl-utils: 0.32 -> 0.33 Diff: https://github.com/common-workflow-language/cwl-utils/compare/refs/tags/v0.32...v0.33 Changelog: https://github.com/common-workflow-language/cwl-utils/releases/tag/v0.33 --- .../python-modules/cwl-utils/default.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/cwl-utils/default.nix b/pkgs/development/python-modules/cwl-utils/default.nix index aaa57e86ae00..b1c603ce081d 100644 --- a/pkgs/development/python-modules/cwl-utils/default.nix +++ b/pkgs/development/python-modules/cwl-utils/default.nix @@ -12,23 +12,28 @@ , requests , ruamel-yaml , schema-salad +, setuptools }: buildPythonPackage rec { pname = "cwl-utils"; - version = "0.32"; - format = "setuptools"; + version = "0.33"; + pyproject = true; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "common-workflow-language"; - repo = pname; + repo = "cwl-utils"; rev = "refs/tags/v${version}"; - hash = "sha256-CM2UlJ86FcjsOm0msBNpY2li8bhm5T/aMD1q292HpLM="; + hash = "sha256-+GvG5Uu2nQWYCcuAkBkegsmMCWhf269jH6Zcex99I4M="; }; - propagatedBuildInputs = [ + build-system = [ + setuptools + ]; + + dependencies = [ cwl-upgrader packaging rdflib