mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or `pythonRemoveDeps` is defined through `mk-python-derivation`.
This commit is contained in:
parent
58ca021599
commit
abdf5dc772
@ -26,7 +26,6 @@ python3.pkgs.buildPythonPackage rec {
|
|||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -45,7 +45,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
wrapQtAppsHook
|
wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -40,7 +40,6 @@ python.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python.pkgs; [
|
nativeBuildInputs = with python.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python.pkgs; [
|
propagatedBuildInputs = with python.pkgs; [
|
||||||
|
@ -18,7 +18,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
hatchling
|
hatchling
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -32,7 +32,6 @@ buildPythonApplication rec {
|
|||||||
hash = "sha256-ns1Y0DqqnTAQMEt+oBJ/P2gqKqPsX9P3/Z4561qzuns";
|
hash = "sha256-ns1Y0DqqnTAQMEt+oBJ/P2gqKqPsX9P3/Z4561qzuns";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
|
||||||
|
@ -30,7 +30,6 @@ python.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python.pkgs; [ setuptools ];
|
build-system = with python.pkgs; [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = with python.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
with python.pkgs;
|
with python.pkgs;
|
||||||
|
@ -17,7 +17,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
setuptools
|
setuptools
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -25,10 +25,6 @@ buildPythonPackage rec {
|
|||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
colorama
|
colorama
|
||||||
openai
|
openai
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, pythonRelaxDepsHook
|
|
||||||
, python3
|
, python3
|
||||||
, snagboot
|
, snagboot
|
||||||
, testers
|
, testers
|
||||||
@ -21,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRemoveDeps = [
|
pythonRemoveDeps = [
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
, zxing-cpp
|
, zxing-cpp
|
||||||
, pillow
|
, pillow
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, pythonRelaxDepsHook
|
|
||||||
|
|
||||||
, src
|
, src
|
||||||
, version
|
, version
|
||||||
@ -21,7 +20,6 @@ buildPythonApplication {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
makeWrapper
|
makeWrapper
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -24,7 +24,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3Packages; [ setuptools ];
|
build-system = with python3Packages; [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3Packages; [
|
dependencies = with python3Packages; [
|
||||||
daemonocle
|
daemonocle
|
||||||
|
@ -16,10 +16,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
hash = "sha256-BmHChLWWnrtg0p4WH8bANwpo+p4RTwjYbXfyPnz6mp8=";
|
hash = "sha256-BmHChLWWnrtg0p4WH8bANwpo+p4RTwjYbXfyPnz6mp8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -24,7 +24,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
installShellFiles
|
installShellFiles
|
||||||
] ++ (with python3Packages; [
|
] ++ (with python3Packages; [
|
||||||
setuptools
|
setuptools
|
||||||
pythonRelaxDepsHook
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -27,7 +27,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
, perl
|
, perl
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, sage-setup
|
, sage-setup
|
||||||
, pythonRelaxDepsHook
|
|
||||||
, gd
|
, gd
|
||||||
, iml
|
, iml
|
||||||
, libpng
|
, libpng
|
||||||
@ -103,7 +102,6 @@ buildPythonPackage rec {
|
|||||||
pip # needed to query installed packages
|
pip # needed to query installed packages
|
||||||
pkg-config
|
pkg-config
|
||||||
sage-setup
|
sage-setup
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -29,7 +29,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
installShellFiles
|
installShellFiles
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -15,7 +15,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
hash = "sha256-XDB1i2b1reMCM6i1uK3IzTnsoLXO7jldYtNlYUo1AoQ=";
|
hash = "sha256-XDB1i2b1reMCM6i1uK3IzTnsoLXO7jldYtNlYUo1AoQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
pygit2
|
pygit2
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
buildPythonApplication,
|
buildPythonApplication,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
poetry-core,
|
poetry-core,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
anchor-kr,
|
anchor-kr,
|
||||||
anitopy,
|
anitopy,
|
||||||
click,
|
click,
|
||||||
@ -47,7 +46,6 @@ buildPythonApplication {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
anchor-kr
|
anchor-kr
|
||||||
|
@ -22,10 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
neo4j
|
neo4j
|
||||||
numpy
|
numpy
|
||||||
|
@ -27,7 +27,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3.pkgs.poetry-core
|
python3.pkgs.poetry-core
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -13,7 +13,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
] ++ [
|
] ++ [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
|
@ -23,7 +23,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ poetry-core ];
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies =
|
dependencies =
|
||||||
with python3.pkgs;
|
with python3.pkgs;
|
||||||
|
@ -27,7 +27,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
python3Packages.pythonRelaxDepsHook
|
|
||||||
python3Packages.setuptools
|
python3Packages.setuptools
|
||||||
python3Packages.wheel
|
python3Packages.wheel
|
||||||
];
|
];
|
||||||
|
@ -32,7 +32,7 @@ let
|
|||||||
--replace 'os.path.expanduser(os.path.join("~", ".u2net", model_name + ".pth"))' "os.path.join(\"$models\", model_name + \".pth\")"
|
--replace 'os.path.expanduser(os.path.join("~", ".u2net", model_name + ".pth"))' "os.path.join(\"$models\", model_name + \".pth\")"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ p.setuptools p.wheel p.pythonRelaxDepsHook ];
|
nativeBuildInputs = [ p.setuptools p.wheel ];
|
||||||
|
|
||||||
pythonRelaxDeps = [ "pillow" "torchvision" ];
|
pythonRelaxDeps = [ "pillow" "torchvision" ];
|
||||||
|
|
||||||
|
@ -45,7 +45,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -26,7 +26,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
wrapQtAppsHook
|
wrapQtAppsHook
|
||||||
]) ++ (with python3Packages; [
|
]) ++ (with python3Packages; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -23,7 +23,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ poetry-core ];
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies =
|
dependencies =
|
||||||
with python3.pkgs;
|
with python3.pkgs;
|
||||||
|
@ -23,7 +23,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -20,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -20,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
setuptools
|
setuptools
|
||||||
setuptools-git-versioning
|
setuptools-git-versioning
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -18,7 +18,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ poetry-core ];
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [ ha-mqtt-discoverable ];
|
dependencies = with python3.pkgs; [ ha-mqtt-discoverable ];
|
||||||
|
|
||||||
|
@ -21,7 +21,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -16,7 +16,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -20,10 +20,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
wheel
|
wheel
|
||||||
setuptools
|
setuptools
|
||||||
|
@ -76,7 +76,6 @@ py.pkgs.buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
{ buildPythonPackage
|
{ buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, lib
|
, lib
|
||||||
, pythonRelaxDepsHook
|
|
||||||
|
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, prettytable
|
, prettytable
|
||||||
@ -24,7 +23,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ poetry-core ];
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
keyring
|
keyring
|
||||||
|
@ -23,7 +23,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
colorama
|
colorama
|
||||||
|
@ -19,10 +19,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
"pathlib"
|
"pathlib"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
@ -39,7 +39,6 @@ in pythonpkgs.buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pythonpkgs.poetry-core
|
pythonpkgs.poetry-core
|
||||||
pythonpkgs.pythonRelaxDepsHook
|
|
||||||
makeWrapper
|
makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
--replace-fail 'opencv-python' 'opencv'
|
--replace-fail 'opencv-python' 'opencv'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonRelaxDeps = [ "torchvision" ];
|
pythonRelaxDeps = [ "torchvision" ];
|
||||||
|
|
||||||
|
@ -35,10 +35,6 @@ python3.pkgs.buildPythonPackage {
|
|||||||
tldextract
|
tldextract
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
"httpx"
|
"httpx"
|
||||||
"tldextract"
|
"tldextract"
|
||||||
|
@ -17,7 +17,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -52,7 +52,6 @@ ps.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
ps.pythonRelaxDepsHook
|
|
||||||
ps.hatchling
|
ps.hatchling
|
||||||
ps.babel
|
ps.babel
|
||||||
];
|
];
|
||||||
|
@ -20,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
copyDesktopItems
|
copyDesktopItems
|
||||||
pythonRelaxDepsHook
|
|
||||||
libsForQt5.wrapQtAppsHook
|
libsForQt5.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -117,7 +117,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ hatchling ];
|
build-system = with python3.pkgs; [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonImportsCheck = [ "open_webui" ];
|
pythonImportsCheck = [ "open_webui" ];
|
||||||
|
|
||||||
|
@ -27,7 +27,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3Packages; [ poetry-core ];
|
build-system = with python3Packages; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3Packages; [
|
propagatedBuildInputs = with python3Packages; [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -32,7 +32,6 @@ python.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python.pkgs; [ poetry-core ];
|
build-system = with python.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies =
|
dependencies =
|
||||||
[ awscli ]
|
[ awscli ]
|
||||||
|
@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -91,7 +91,6 @@ python.pkgs.buildPythonApplication rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
gettext
|
gettext
|
||||||
] ++ (with python.pkgs; [
|
] ++ (with python.pkgs; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
@ -33,10 +33,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
"slack-sdk"
|
"slack-sdk"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -20,7 +20,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
build-system = [
|
build-system = [
|
||||||
python3.pkgs.setuptools
|
python3.pkgs.setuptools
|
||||||
python3.pkgs.wheel
|
python3.pkgs.wheel
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
|
@ -27,7 +27,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
tqdm
|
tqdm
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = with python3Packages; [ pytestCheckHook pythonRelaxDepsHook ];
|
nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
|
||||||
|
|
||||||
pythonRelaxDeps = [ "torch" "torchvision" ];
|
pythonRelaxDeps = [ "torch" "torchvision" ];
|
||||||
|
|
||||||
|
@ -24,7 +24,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -21,7 +21,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
hatchling
|
hatchling
|
||||||
pythonRelaxDepsHook
|
|
||||||
qt6.wrapQtAppsHook
|
qt6.wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -25,10 +25,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
graphviz
|
graphviz
|
||||||
] ++ (with python3.pkgs; [
|
] ++ (with python3.pkgs; [
|
||||||
|
@ -26,7 +26,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ hatchling ];
|
build-system = with python3.pkgs; [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
click
|
click
|
||||||
|
@ -19,7 +19,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -105,7 +105,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -40,7 +40,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3Packages.poetry-core
|
python3Packages.poetry-core
|
||||||
python3Packages.pythonRelaxDepsHook
|
|
||||||
copyDesktopItems
|
copyDesktopItems
|
||||||
qt6.wrapQtAppsHook
|
qt6.wrapQtAppsHook
|
||||||
wrapGAppsHook3
|
wrapGAppsHook3
|
||||||
|
@ -17,7 +17,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3.pkgs.hatchling
|
python3.pkgs.hatchling
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -18,7 +18,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
pythonRelaxDeps = [ "tomlkit" ];
|
pythonRelaxDeps = [ "tomlkit" ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
build-system = with python3Packages; [ poetry-core ];
|
build-system = with python3Packages; [ poetry-core ];
|
||||||
|
|
||||||
|
@ -21,7 +21,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [ poetry-core ];
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
chardet
|
chardet
|
||||||
|
@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
hatchling
|
hatchling
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = with python3.pkgs; [
|
dependencies = with python3.pkgs; [
|
||||||
|
@ -24,7 +24,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
python3Packages.setuptools
|
python3Packages.setuptools
|
||||||
python3Packages.setuptools-scm
|
python3Packages.setuptools-scm
|
||||||
python3Packages.pythonRelaxDepsHook
|
|
||||||
installShellFiles
|
installShellFiles
|
||||||
scdoc
|
scdoc
|
||||||
];
|
];
|
||||||
|
@ -17,7 +17,6 @@ python3Packages.buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
rich
|
rich
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -23,7 +23,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
@ -22,7 +22,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
"sqlalchemy"
|
"sqlalchemy"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
|
@ -28,10 +28,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
pythonRelaxDeps = true;
|
pythonRelaxDeps = true;
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
@ -19,10 +19,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
"textual"
|
"textual"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
build-system = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
@ -17,10 +17,6 @@ in python3.pkgs.buildPythonApplication {
|
|||||||
|
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
python3.pkgs.pythonRelaxDepsHook
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
python3.pkgs.hatchling
|
python3.pkgs.hatchling
|
||||||
python3.pkgs.pydantic
|
python3.pkgs.pydantic
|
||||||
|
@ -17,7 +17,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = with python3Packages; [
|
nativeBuildInputs = with python3Packages; [
|
||||||
setuptools
|
setuptools
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, buildPythonApplication
|
, buildPythonApplication
|
||||||
, pythonRelaxDepsHook
|
|
||||||
, poetry-core
|
, poetry-core
|
||||||
, colorama
|
, colorama
|
||||||
, packaging
|
, packaging
|
||||||
@ -28,7 +27,6 @@ buildPythonApplication rec {
|
|||||||
gobject-introspection
|
gobject-introspection
|
||||||
poetry-core
|
poetry-core
|
||||||
wrapGAppsNoGuiHook
|
wrapGAppsNoGuiHook
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
, pycryptodome
|
, pycryptodome
|
||||||
, pytest-runner
|
, pytest-runner
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
, pythonRelaxDepsHook
|
|
||||||
, recommonmark
|
, recommonmark
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, sphinx
|
, sphinx
|
||||||
@ -50,7 +49,6 @@ buildPythonPackage rec {
|
|||||||
# ever since https://github.com/vyperlang/vyper/pull/2816
|
# ever since https://github.com/vyperlang/vyper/pull/2816
|
||||||
git
|
git
|
||||||
|
|
||||||
pythonRelaxDepsHook
|
|
||||||
pytest-runner
|
pytest-runner
|
||||||
setuptools-scm
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
@ -50,7 +50,6 @@ with python3Packages; buildPythonApplication rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
pytest-asyncio,
|
pytest-asyncio,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytz,
|
pytz,
|
||||||
setuptools,
|
setuptools,
|
||||||
}:
|
}:
|
||||||
@ -31,7 +30,6 @@ buildPythonPackage rec {
|
|||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
python-dateutil,
|
python-dateutil,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -37,7 +36,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ poetry-core ];
|
build-system = [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
pytest-asyncio,
|
pytest-asyncio,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
requests,
|
requests,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -34,7 +33,6 @@ buildPythonPackage rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
poetry-dynamic-versioning
|
poetry-dynamic-versioning
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [ "aiobotocore" ];
|
pythonRelaxDeps = [ "aiobotocore" ];
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
pytest-lazy-fixture,
|
pytest-lazy-fixture,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytz,
|
pytz,
|
||||||
redis,
|
redis,
|
||||||
}:
|
}:
|
||||||
@ -41,7 +40,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ hatchling ];
|
build-system = [ hatchling ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonRelaxDeps = [ "pydantic" ];
|
pythonRelaxDeps = [ "pydantic" ];
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
poetry-core,
|
poetry-core,
|
||||||
pytest,
|
pytest,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -24,7 +23,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ poetry-core ];
|
build-system = [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonRelaxDeps = [ "pytest" ];
|
pythonRelaxDeps = [ "pytest" ];
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
pytest-aiohttp,
|
pytest-aiohttp,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
@ -35,7 +34,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ poetry-core ];
|
build-system = [ poetry-core ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
pytest-mock,
|
pytest-mock,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
requests,
|
requests,
|
||||||
setuptools,
|
setuptools,
|
||||||
setuptools-scm,
|
setuptools-scm,
|
||||||
@ -38,7 +37,6 @@ buildPythonPackage rec {
|
|||||||
setuptools-scm
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
aiohttp
|
aiohttp
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pamqp,
|
pamqp,
|
||||||
yarl,
|
yarl,
|
||||||
@ -27,7 +26,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [ "pamqp" ];
|
pythonRelaxDeps = [ "pamqp" ];
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonAtLeast,
|
pythonAtLeast,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytz,
|
pytz,
|
||||||
setuptools,
|
setuptools,
|
||||||
sortedcollections,
|
sortedcollections,
|
||||||
@ -41,7 +40,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
aiosasl
|
aiosasl
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
|
|
||||||
# build-system
|
# build-system
|
||||||
poetry-core,
|
poetry-core,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
bitarray,
|
bitarray,
|
||||||
@ -31,7 +30,6 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
build-system = [ poetry-core ];
|
build-system = [ poetry-core ];
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
pythonRelaxDeps = [ "crc" ];
|
pythonRelaxDeps = [ "crc" ];
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
pydantic,
|
pydantic,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
torch,
|
torch,
|
||||||
torchvision,
|
torchvision,
|
||||||
typing-extensions,
|
typing-extensions,
|
||||||
@ -33,7 +32,6 @@ buildPythonPackage rec {
|
|||||||
hash = "sha256-7t1+22zzFtkZaAyOo6xjk+MXT9N44PmQ/NRRfvLeRVk=";
|
hash = "sha256-7t1+22zzFtkZaAyOo6xjk+MXT9N44PmQ/NRRfvLeRVk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
pythonRemoveDeps = [
|
pythonRemoveDeps = [
|
||||||
"opencv-python"
|
"opencv-python"
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
poetry-core,
|
poetry-core,
|
||||||
pyotp,
|
pyotp,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
requests,
|
requests,
|
||||||
simplejson,
|
simplejson,
|
||||||
yarl,
|
yarl,
|
||||||
@ -36,7 +35,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
@ -5,7 +5,6 @@
|
|||||||
fetchPypi,
|
fetchPypi,
|
||||||
jmespath,
|
jmespath,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
setuptools,
|
setuptools,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -25,7 +24,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
cryptography
|
cryptography
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
pycparser,
|
pycparser,
|
||||||
pyformlang,
|
pyformlang,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pyvex,
|
pyvex,
|
||||||
rich,
|
rich,
|
||||||
rpyc,
|
rpyc,
|
||||||
@ -52,7 +51,6 @@ buildPythonPackage rec {
|
|||||||
pythonRelaxDeps = [ "capstone" ];
|
pythonRelaxDeps = [ "capstone" ];
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
buildPythonPackage,
|
buildPythonPackage,
|
||||||
fetchPypi,
|
fetchPypi,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
installShellFiles,
|
installShellFiles,
|
||||||
docutils,
|
docutils,
|
||||||
ansible,
|
ansible,
|
||||||
@ -51,7 +50,7 @@ buildPythonPackage rec {
|
|||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
installShellFiles
|
installShellFiles
|
||||||
docutils
|
docutils
|
||||||
] ++ lib.optionals (pythonOlder "3.10") [ pythonRelaxDepsHook ];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
[
|
[
|
||||||
|
@ -33,7 +33,6 @@
|
|||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
python,
|
python,
|
||||||
python-dateutil,
|
python-dateutil,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytz,
|
pytz,
|
||||||
pyyaml,
|
pyyaml,
|
||||||
regex,
|
regex,
|
||||||
@ -96,7 +95,6 @@ buildPythonPackage rec {
|
|||||||
cython
|
cython
|
||||||
grpcio-tools
|
grpcio-tools
|
||||||
mypy-protobuf
|
mypy-protobuf
|
||||||
pythonRelaxDepsHook
|
|
||||||
setuptools
|
setuptools
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@
|
|||||||
packageurl-python,
|
packageurl-python,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
semver,
|
semver,
|
||||||
setuptools,
|
setuptools,
|
||||||
tabulate,
|
tabulate,
|
||||||
@ -42,7 +41,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
appdirs
|
appdirs
|
||||||
|
@ -41,7 +41,6 @@
|
|||||||
python-jose,
|
python-jose,
|
||||||
python-multipart,
|
python-multipart,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pyyaml,
|
pyyaml,
|
||||||
rich,
|
rich,
|
||||||
schedule,
|
schedule,
|
||||||
@ -90,7 +89,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ setuptools ];
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
httpx
|
httpx
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
fetchpatch,
|
fetchpatch,
|
||||||
packaging,
|
packaging,
|
||||||
poetry-core,
|
poetry-core,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
structlog,
|
structlog,
|
||||||
}:
|
}:
|
||||||
@ -43,7 +42,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
pythonRelaxDeps = [ "structlog" ];
|
pythonRelaxDeps = [ "structlog" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
build-system = [ poetry-core ];
|
build-system = [ poetry-core ];
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
python-dateutil,
|
python-dateutil,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytz,
|
pytz,
|
||||||
remotezip,
|
remotezip,
|
||||||
requests-mock,
|
requests-mock,
|
||||||
@ -37,7 +36,6 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
build-system = [ setuptools-scm ];
|
build-system = [ setuptools-scm ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
dateparser
|
dateparser
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
poetry-core,
|
poetry-core,
|
||||||
tkinter,
|
tkinter,
|
||||||
typing-extensions,
|
typing-extensions,
|
||||||
pythonRelaxDepsHook,
|
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -22,7 +21,6 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pythonRelaxDepsHook
|
|
||||||
poetry-core
|
poetry-core
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user