nixpkgs/pkgs/applications/science/misc/cwltool/default.nix

78 lines
1.4 KiB
Nix
Raw Normal View History

2021-07-21 04:52:10 +00:00
{ lib
, fetchFromGitHub
, git
, nodejs
, python3
2021-07-21 04:52:10 +00:00
}:
python3.pkgs.buildPythonApplication rec {
2021-07-21 04:52:10 +00:00
pname = "cwltool";
version = "3.1.20211104071347";
format = "setuptools";
2021-07-21 04:52:10 +00:00
disabled = python3.pythonOlder "3.6";
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = pname;
rev = version;
sha256 = "sha256-tp4SdilW2PKav7b3/BchXYl33W9U0aQH6FPdOhHSvIQ=";
2021-07-21 04:52:10 +00:00
};
postPatch = ''
substituteInPlace setup.py \
--replace 'prov == 1.5.1' 'prov' \
--replace "setup_requires=PYTEST_RUNNER," ""
2021-07-21 04:52:10 +00:00
'';
nativeBuildInputs = [
git
];
propagatedBuildInputs = with python3.pkgs; [
2021-07-21 04:52:10 +00:00
argcomplete
bagit
coloredlogs
mypy-extensions
prov
psutil
pydot
rdflib
requests
ruamel-yaml
2021-07-21 04:52:10 +00:00
schema-salad
shellescape
typing-extensions
];
checkInputs = with python3.pkgs; [
mock
nodejs
pytest-mock
pytest-xdist
pytestCheckHook
];
disabledTests = [
"test_content_types"
"test_env_filtering"
"test_http_path_mapping"
];
disabledTestPaths = [
"tests/test_udocker.py"
"tests/test_provenance.py"
];
pythonImportsCheck = [
"cwltool"
];
2021-07-21 04:52:10 +00:00
meta = with lib; {
description = "Common Workflow Language reference implementation";
2021-07-21 04:52:10 +00:00
homepage = "https://www.commonwl.org";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ veprbl ];
};
}