mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #325283 from mweinelt/python-relax-deps-hook-cleanup
treewide: clean up pythonRelaxDepsHook references
This commit is contained in:
commit
9887372ebb
10 changed files with 0 additions and 30 deletions
|
@ -23,7 +23,6 @@ python3Packages.buildPythonApplication rec {
|
|||
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
nose
|
||||
];
|
||||
|
||||
|
|
|
@ -43,10 +43,6 @@ python3.pkgs.buildPythonPackage {
|
|||
(callPackage ./mov-cli-test.nix {})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"httpx"
|
||||
"tldextract"
|
||||
|
|
|
@ -24,8 +24,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||
setuptools
|
||||
];
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
||||
|
||||
dependencies = with python3.pkgs; [
|
||||
jinja2
|
||||
openai
|
||||
|
|
|
@ -20,10 +20,6 @@ in python3.pkgs.buildPythonApplication {
|
|||
pyproject = true;
|
||||
pythonRelaxDeps = true;
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
setuptools
|
||||
telethon
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pythonOlder,
|
||||
pythonRelaxDepsHook,
|
||||
hatchling,
|
||||
hatch-vcs,
|
||||
aiohttp,
|
||||
|
@ -130,8 +129,6 @@ buildPythonPackage {
|
|||
hash = "sha256-giZteSikwS9YEcVMPCC9h2khbBgvUPRW1biAyixO13Y=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"cattrs"
|
||||
"nvidia-ml-py"
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pdm-backend,
|
||||
pythonRelaxDepsHook,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
pytz,
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
lib,
|
||||
buildPythonPackage,
|
||||
poetry-core,
|
||||
pythonRelaxDepsHook,
|
||||
llama-index-agent-openai,
|
||||
llama-index-cli,
|
||||
llama-index-core,
|
||||
|
@ -26,10 +25,6 @@ buildPythonPackage {
|
|||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"llama-index-core"
|
||||
];
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
fetchzip,
|
||||
substitute,
|
||||
pythonRelaxDepsHook,
|
||||
pytestCheckHook,
|
||||
|
||||
setuptools,
|
||||
|
@ -73,8 +72,6 @@ buildPythonPackage {
|
|||
echo "from .rapidocr_onnxruntime.main import RapidOCR, VisRes" > __init__.py
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
||||
|
||||
# Upstream expects the source files to be under rapidocr_onnxruntime/rapidocr_onnxruntime
|
||||
# instead of rapidocr_onnxruntime for the wheel to build correctly.
|
||||
preBuild = ''
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
python-dateutil,
|
||||
pythonAtLeast,
|
||||
pythonOlder,
|
||||
pythonRelaxDepsHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
|
@ -28,8 +27,6 @@ buildPythonPackage rec {
|
|||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
||||
|
||||
dependencies = [ python-dateutil ];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
|
|
@ -26,10 +26,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||
setuptools
|
||||
];
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"aws-lambda-builders"
|
||||
"aws-sam-translator"
|
||||
|
|
Loading…
Reference in a new issue