mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 14:41:27 +00:00
pythonPackages: deprecate ConfigArgParse alias
This commit is contained in:
parent
9df3d2ca2c
commit
b4099137b1
@ -18,7 +18,7 @@ in pythonPackages.buildPythonApplication rec {
|
||||
|
||||
buildInputs = with pythonPackages; [ glibcLocales ];
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 ConfigArgParse keyring pyasn1 requests six urllib3 ];
|
||||
propagatedBuildInputs = with pythonPackages; [ attrs beautifulsoup4 configargparse keyring pyasn1 requests six urllib3 ];
|
||||
|
||||
checkInputs = with pythonPackages; [ pytest mock ];
|
||||
|
||||
|
@ -5,7 +5,7 @@
|
||||
, waylandSupport ? true
|
||||
, x11Support ? true
|
||||
|
||||
, ConfigArgParse
|
||||
, configargparse
|
||||
, rofi
|
||||
, wl-clipboard
|
||||
, wtype
|
||||
@ -26,7 +26,7 @@ buildPythonApplication rec {
|
||||
|
||||
# `rofi` and the `waylandSupport` and `x11Support` dependencies
|
||||
# contain binaries needed at runtime.
|
||||
propagatedBuildInputs = with lib; [ ConfigArgParse rofi ]
|
||||
propagatedBuildInputs = with lib; [ configargparse rofi ]
|
||||
++ optionals waylandSupport [ wl-clipboard wtype ]
|
||||
++ optionals x11Support [ xdotool xsel ];
|
||||
|
||||
|
@ -6,7 +6,7 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
appdirs
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
connection-pool
|
||||
datrie
|
||||
docutils
|
||||
|
@ -43,7 +43,7 @@ python27Packages.buildPythonApplication {
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
propagatedBuildInputs = [ deps.oildev python27Packages.ConfigArgParse ];
|
||||
propagatedBuildInputs = [ deps.oildev python27Packages.configargparse ];
|
||||
|
||||
patchPhase = ''
|
||||
for file in resholve; do
|
||||
|
@ -2,7 +2,7 @@
|
||||
, buildPythonPackage
|
||||
, python, runCommand
|
||||
, fetchFromGitHub
|
||||
, ConfigArgParse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
|
||||
, configargparse, acme, configobj, cryptography, distro, josepy, parsedatetime, pyRFC3339, pyopenssl, pytz, requests, six, zope_component, zope_interface
|
||||
, dialog, gnureadline
|
||||
, pytest-xdist, pytestCheckHook, python-dateutil
|
||||
}:
|
||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
||||
sourceRoot = "source/${pname}";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
acme
|
||||
configobj
|
||||
cryptography
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, fetchFromGitHub, buildPythonPackage, ed25519, ecdsa , semver, mnemonic,
|
||||
unidecode, mock, pytest , backports-shutil-which, ConfigArgParse,
|
||||
unidecode, mock, pytest , backports-shutil-which, configargparse,
|
||||
python-daemon, pymsgbox }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -13,7 +13,7 @@ buildPythonPackage rec {
|
||||
sha256 = "16y1y9ahcv3wj7f0v4mfiwzkmn2hz1iv7y13cgr57sxa3ymyqx6c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ unidecode backports-shutil-which ConfigArgParse
|
||||
propagatedBuildInputs = [ unidecode backports-shutil-which configargparse
|
||||
python-daemon pymsgbox ecdsa ed25519 mnemonic semver ];
|
||||
|
||||
checkInputs = [ mock pytest ];
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ lib, fetchPypi, buildPythonPackage, pythonAtLeast, intervaltree, pyflakes, requests, lxml, google-i18n-address
|
||||
, pycountry, html5lib, six, kitchen, pypdf2, dict2xml, weasyprint, pyyaml, jinja2, ConfigArgParse, appdirs
|
||||
, pycountry, html5lib, six, kitchen, pypdf2, dict2xml, weasyprint, pyyaml, jinja2, configargparse, appdirs
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -27,7 +27,7 @@ buildPythonPackage rec {
|
||||
pypdf2
|
||||
dict2xml
|
||||
weasyprint
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
appdirs
|
||||
];
|
||||
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
pyenv = python3.withPackages (pythonPackages: with pythonPackages; [
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
]);
|
||||
|
||||
postConfigure = ''
|
||||
|
@ -21,7 +21,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
cached-property
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
pyparsing
|
||||
jinja2
|
||||
nose
|
||||
|
@ -12,7 +12,7 @@ python3Packages.buildPythonApplication rec {
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
attrs ConfigArgParse ffmpeg future lxml requests
|
||||
attrs configargparse ffmpeg future lxml requests
|
||||
];
|
||||
pythonPath = [ rtmpdump php wget ];
|
||||
|
||||
|
@ -16,7 +16,7 @@ buildPythonApplication rec {
|
||||
nativeBuildInputs = [ gettext ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ConfigArgParse
|
||||
configargparse
|
||||
argcomplete
|
||||
beautifulsoup4
|
||||
pyopenssl
|
||||
|
@ -26825,7 +26825,7 @@ in
|
||||
rofi-systemd = callPackage ../tools/system/rofi-systemd { };
|
||||
|
||||
rofimoji = callPackage ../applications/misc/rofimoji {
|
||||
inherit (python3Packages) buildPythonApplication ConfigArgParse;
|
||||
inherit (python3Packages) buildPythonApplication configargparse;
|
||||
};
|
||||
|
||||
rootlesskit = callPackage ../tools/virtualization/rootlesskit {};
|
||||
|
@ -36,6 +36,7 @@ mapAliases ({
|
||||
blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # Added 2020-11-29
|
||||
bt_proximity = bt-proximity; # added 2021-07-02
|
||||
bugseverywhere = throw "bugseverywhere has been removed: Abandoned by upstream."; # Added 2019-11-27
|
||||
ConfigArgParse = configargparse; # added 2021-03-18
|
||||
dateutil = python-dateutil; # added 2021-07-03
|
||||
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
|
||||
dftfit = throw "it's dependency lammps-cython no longer builds";
|
||||
|
@ -1607,7 +1607,6 @@ in {
|
||||
|
||||
conda = callPackage ../development/python-modules/conda { };
|
||||
|
||||
ConfigArgParse = self.configargparse; # added 2021-03-18
|
||||
configargparse = callPackage ../development/python-modules/configargparse { };
|
||||
|
||||
configobj = callPackage ../development/python-modules/configobj { };
|
||||
|
Loading…
Reference in New Issue
Block a user