mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
python312Packages.types-requests: 2.32.0.20240914 -> 2.32.0.20241016 (#349418)
This commit is contained in:
commit
3c9071f916
@ -1,41 +1,44 @@
|
|||||||
{ lib
|
{
|
||||||
, fetchFromGitHub
|
lib,
|
||||||
, git
|
fetchFromGitHub,
|
||||||
, nodejs
|
git,
|
||||||
, python3
|
nodejs,
|
||||||
|
python3,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "cwltool";
|
pname = "cwltool";
|
||||||
version = "3.1.20240708091337";
|
version = "3.1.20241024121129";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "common-workflow-language";
|
owner = "common-workflow-language";
|
||||||
repo = "cwltool";
|
repo = "cwltool";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-Umxh8sRBy7fC6+GrcN1q4iO0KVpmUhGPtnqZZK/6c9M=";
|
hash = "sha256-MocgfELgis9b+byeDU7mDQcXnLhaWBtvGbqm7MtRdf8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace setup.py \
|
substituteInPlace setup.py \
|
||||||
--replace "ruamel.yaml >= 0.16, < 0.19" "ruamel.yaml" \
|
--replace-fail "ruamel.yaml >= 0.16, < 0.19" "ruamel.yaml" \
|
||||||
--replace "prov == 1.5.1" "prov" \
|
--replace-fail "prov == 1.5.1" "prov" \
|
||||||
--replace '"schema-salad >= 8.4.20230426093816, < 9",' "" \
|
--replace-fail '"schema-salad >= 8.7, < 9",' '"schema-salad",' \
|
||||||
--replace "PYTEST_RUNNER + " ""
|
--replace-fail "PYTEST_RUNNER + " ""
|
||||||
substituteInPlace pyproject.toml \
|
substituteInPlace pyproject.toml \
|
||||||
--replace "ruamel.yaml>=0.16.0,<0.18" "ruamel.yaml" \
|
--replace-fail "ruamel.yaml>=0.16.0,<0.18" "ruamel.yaml" \
|
||||||
--replace "mypy==1.10.0" "mypy==1.10.*"
|
--replace-fail "mypy==1.13.0" "mypy"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs =
|
||||||
git
|
[
|
||||||
] ++ (with python3.pkgs; [
|
git
|
||||||
setuptools
|
]
|
||||||
setuptools-scm
|
++ (with python3.pkgs; [
|
||||||
]);
|
setuptools
|
||||||
|
setuptools-scm
|
||||||
|
]);
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
argcomplete
|
argcomplete
|
||||||
bagit
|
bagit
|
||||||
coloredlogs
|
coloredlogs
|
||||||
@ -84,10 +87,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Common Workflow Language reference implementation";
|
description = "Common Workflow Language reference implementation";
|
||||||
mainProgram = "cwltool";
|
|
||||||
homepage = "https://www.commonwl.org";
|
homepage = "https://www.commonwl.org";
|
||||||
changelog = "https://github.com/common-workflow-language/cwltool/releases/tag/${version}";
|
changelog = "https://github.com/common-workflow-language/cwltool/releases/tag/${version}";
|
||||||
license = with licenses; [ asl20 ];
|
license = with licenses; [ asl20 ];
|
||||||
maintainers = with maintainers; [ veprbl ];
|
maintainers = with maintainers; [ veprbl ];
|
||||||
|
mainProgram = "cwltool";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -22,21 +22,21 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "schema-salad";
|
pname = "schema-salad";
|
||||||
version = "8.7.20240905150001";
|
version = "8.7.20241021092521";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
disabled = pythonOlder "3.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "common-workflow-language";
|
owner = "common-workflow-language";
|
||||||
repo = "schema_salad";
|
repo = "schema_salad";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-hPqUD9gYO78NnG/QdD32uRkRPpN5UIhfzNHpUXnNOgE=";
|
hash = "sha256-1V73y+sp94QwoCz8T2LCMnf5iq8MtL9cvrhF949R+08=";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace pyproject.toml \
|
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 ];
|
build-system = [ setuptools-scm ];
|
||||||
@ -57,7 +57,6 @@ buildPythonPackage rec {
|
|||||||
++ cachecontrol.optional-dependencies.filecache
|
++ cachecontrol.optional-dependencies.filecache
|
||||||
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
|
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
|
||||||
|
|
||||||
|
|
||||||
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.pycodegen;
|
nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.pycodegen;
|
||||||
|
|
||||||
preCheck = ''
|
preCheck = ''
|
||||||
|
@ -9,12 +9,12 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "types-requests";
|
pname = "types-requests";
|
||||||
version = "2.32.0.20240914";
|
version = "2.32.0.20241016";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-KFDheNs5Gdm/gJ5DTu9luknQ5+M6yS1Yj0peKV//1AU=";
|
hash = "sha256-DZytLydRXQ4+PacTShtvKPuXEp2GuGfyTZxyZFJjTZU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
Loading…
Reference in New Issue
Block a user