cwltool: init at 3.1.20210628163208

This commit is contained in:
Dmitry Kalinkin 2021-07-21 00:52:10 -04:00
parent 81e3df355a
commit 3f24366cda
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "cwltool";
version = "3.1.20210628163208";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "21b885f725420413d2f87eadc5e81c08a9c91beceda89b35d1a702ec4df47e52";
};
postPatch = ''
substituteInPlace setup.py \
--replace 'prov == 1.5.1' 'prov'
'';
propagatedBuildInputs = with python3Packages; [
argcomplete
bagit
coloredlogs
mypy-extensions
prov
psutil
pydot
schema-salad
shellescape
typing-extensions
];
doCheck = false; # hard to setup
pythonImportsCheck = [ "cwltool" ];
meta = with lib; {
homepage = "https://www.commonwl.org";
license = with licenses; [ asl20 ];
description = "Common Workflow Language reference implementation";
maintainers = with maintainers; [ veprbl ];
};
}

View file

@ -13403,6 +13403,8 @@ in
inherit (llvmPackages_11) llvm libclang;
};
cwltool = callPackage ../applications/science/misc/cwltool { };
dprint = callPackage ../development/tools/dprint { };
libcxx = llvmPackages.libcxx;