Merge pull request #303541 from fabaff/cwl-utils-bump

python312Packages.cwl-utils: 0.32 -> 0.33
This commit is contained in:
Fabian Affolter 2024-04-12 12:22:13 +02:00 committed by GitHub
commit 440fad154e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,34 +1,38 @@
{ lib {
, buildPythonPackage lib,
, cwl-upgrader buildPythonPackage,
, cwlformat cwl-upgrader,
, fetchFromGitHub cwlformat,
, packaging fetchFromGitHub,
, pytest-mock packaging,
, pytest-xdist pytest-mock,
, pytestCheckHook pytest-xdist,
, pythonOlder pytestCheckHook,
, rdflib pythonOlder,
, requests rdflib,
, ruamel-yaml requests,
, schema-salad ruamel-yaml,
schema-salad,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "cwl-utils"; pname = "cwl-utils";
version = "0.32"; version = "0.33";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "common-workflow-language"; owner = "common-workflow-language";
repo = pname; repo = "cwl-utils";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-CM2UlJ86FcjsOm0msBNpY2li8bhm5T/aMD1q292HpLM="; hash = "sha256-+GvG5Uu2nQWYCcuAkBkegsmMCWhf269jH6Zcex99I4M=";
}; };
propagatedBuildInputs = [ build-system = [ setuptools ];
dependencies = [
cwl-upgrader cwl-upgrader
packaging packaging
rdflib rdflib
@ -44,9 +48,7 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "cwl_utils" ];
"cwl_utils"
];
disabledTests = [ disabledTests = [
# Don't run tests which require Node.js # Don't run tests which require Node.js