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
1 changed files with 24 additions and 22 deletions

View File

@ -1,34 +1,38 @@
{ lib
, buildPythonPackage
, cwl-upgrader
, cwlformat
, fetchFromGitHub
, packaging
, pytest-mock
, pytest-xdist
, pytestCheckHook
, pythonOlder
, rdflib
, requests
, ruamel-yaml
, schema-salad
{
lib,
buildPythonPackage,
cwl-upgrader,
cwlformat,
fetchFromGitHub,
packaging,
pytest-mock,
pytest-xdist,
pytestCheckHook,
pythonOlder,
rdflib,
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
@ -44,9 +48,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"cwl_utils"
];
pythonImportsCheck = [ "cwl_utils" ];
disabledTests = [
# Don't run tests which require Node.js