mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, mypy-extensions
|
|
, pytest-xdist
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, ruamel-yaml
|
|
, schema-salad
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cwl-upgrader";
|
|
version = "1.2.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "common-workflow-language";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-yvgGMGo4QK+PRDzqlOH4rP49fnJUlbYB9B5AnlX+LF8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "ruamel.yaml >= 0.15, < 0.17.22" "ruamel.yaml" \
|
|
--replace "setup_requires=PYTEST_RUNNER," ""
|
|
sed -i "/ruamel.yaml/d" setup.py
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
mypy-extensions
|
|
ruamel-yaml
|
|
schema-salad
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"cwlupgrader"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library to interface with Yolink";
|
|
homepage = "https://github.com/common-workflow-language/cwl-utils";
|
|
changelog = "https://github.com/common-workflow-language/cwl-utils/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|