python312Packages.types-requests: 2.32.0.20240914 -> 2.32.0.20241016 (#349418)

This commit is contained in:
Fabian Affolter 2024-10-31 17:57:41 +01:00 committed by GitHub
commit 3c9071f916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 30 additions and 28 deletions

View File

@ -1,41 +1,44 @@
{ lib
, fetchFromGitHub
, git
, nodejs
, python3
{
lib,
fetchFromGitHub,
git,
nodejs,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "cwltool";
version = "3.1.20240708091337";
version = "3.1.20241024121129";
pyproject = true;
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "cwltool";
rev = "refs/tags/${version}";
hash = "sha256-Umxh8sRBy7fC6+GrcN1q4iO0KVpmUhGPtnqZZK/6c9M=";
hash = "sha256-MocgfELgis9b+byeDU7mDQcXnLhaWBtvGbqm7MtRdf8=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "ruamel.yaml >= 0.16, < 0.19" "ruamel.yaml" \
--replace "prov == 1.5.1" "prov" \
--replace '"schema-salad >= 8.4.20230426093816, < 9",' "" \
--replace "PYTEST_RUNNER + " ""
--replace-fail "ruamel.yaml >= 0.16, < 0.19" "ruamel.yaml" \
--replace-fail "prov == 1.5.1" "prov" \
--replace-fail '"schema-salad >= 8.7, < 9",' '"schema-salad",' \
--replace-fail "PYTEST_RUNNER + " ""
substituteInPlace pyproject.toml \
--replace "ruamel.yaml>=0.16.0,<0.18" "ruamel.yaml" \
--replace "mypy==1.10.0" "mypy==1.10.*"
--replace-fail "ruamel.yaml>=0.16.0,<0.18" "ruamel.yaml" \
--replace-fail "mypy==1.13.0" "mypy"
'';
nativeBuildInputs = [
git
] ++ (with python3.pkgs; [
setuptools
setuptools-scm
]);
nativeBuildInputs =
[
git
]
++ (with python3.pkgs; [
setuptools
setuptools-scm
]);
propagatedBuildInputs = with python3.pkgs; [
dependencies = with python3.pkgs; [
argcomplete
bagit
coloredlogs
@ -84,10 +87,10 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Common Workflow Language reference implementation";
mainProgram = "cwltool";
homepage = "https://www.commonwl.org";
changelog = "https://github.com/common-workflow-language/cwltool/releases/tag/${version}";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ veprbl ];
mainProgram = "cwltool";
};
}

View File

@ -22,21 +22,21 @@
buildPythonPackage rec {
pname = "schema-salad";
version = "8.7.20240905150001";
version = "8.7.20241021092521";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "common-workflow-language";
repo = "schema_salad";
rev = "refs/tags/${version}";
hash = "sha256-hPqUD9gYO78NnG/QdD32uRkRPpN5UIhfzNHpUXnNOgE=";
hash = "sha256-1V73y+sp94QwoCz8T2LCMnf5iq8MtL9cvrhF949R+08=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "black>=19.10b0,<23.12" "black>=19.10b0"
--replace-fail "mypy[mypyc]==1.12.1" "mypy"
'';
build-system = [ setuptools-scm ];
@ -57,7 +57,6 @@ buildPythonPackage rec {
++ cachecontrol.optional-dependencies.filecache
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.pycodegen;
preCheck = ''

View File

@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "types-requests";
version = "2.32.0.20240914";
version = "2.32.0.20241016";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KFDheNs5Gdm/gJ5DTu9luknQ5+M6yS1Yj0peKV//1AU=";
hash = "sha256-DZytLydRXQ4+PacTShtvKPuXEp2GuGfyTZxyZFJjTZU=";
};
build-system = [ setuptools ];