python3Packages.schema-salad: 8.9.20260327095315 -> 8.10.20260814121804, python3Packages.cwl-utils: 0.42 -> 0.43 (#556151)

This commit is contained in:
Fabian Affolter
2026-08-24 21:49:38 +00:00
committed by GitHub
2 changed files with 5 additions and 6 deletions

View File

@@ -18,14 +18,14 @@
buildPythonPackage (finalAttrs: {
pname = "cwl-utils";
version = "0.42";
version = "0.43";
pyproject = true;
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "cwl-utils";
tag = "v${finalAttrs.version}";
hash = "sha256-4RmKVhYfyB7idO6euo0jJuHjW19Ybt9MIbNTM0WSAb4=";
hash = "sha256-B71B3cpf+ClbhIpUuhtu/deAECLkQEjpspor6jhi2is=";
};
build-system = [ hatchling ];

View File

@@ -21,14 +21,14 @@
buildPythonPackage rec {
pname = "schema-salad";
version = "8.9.20260327095315";
version = "8.10.20260814121804";
pyproject = true;
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "schema_salad";
tag = version;
hash = "sha256-j3jevOMsNHT9+HI/8MD4MUwj+IHUisKMs/OA5wpweao=";
hash = "sha256-82124Xb4fOl0CjaE/FVbf8V1adtVw2dVpifql6xUB2k=";
};
pythonRelaxDeps = [ "mistune" ];
@@ -37,8 +37,7 @@ buildPythonPackage rec {
substituteInPlace setup.py \
--replace-fail 'pytest_runner + ["setuptools_scm>=8.0.4,<11"]' '["setuptools_scm"]'
substituteInPlace pyproject.toml \
--replace-fail '"setuptools_scm[toml]>=8.0.4,<11"' '"setuptools_scm[toml]"' \
--replace-fail "mypy[mypyc]==1.19.1" "mypy"
--replace-fail '"setuptools_scm[toml]>=8.0.4,<11"' '"setuptools_scm[toml]"'
sed -i "/black>=/d" pyproject.toml
'';