mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
python310Packages.jaraco-text: rename from jaraco_text
This commit is contained in:
parent
cc90670759
commit
d54c4d1e0a
8 changed files with 27 additions and 15 deletions
|
@ -3,7 +3,7 @@
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, jaraco-functools
|
, jaraco-functools
|
||||||
, jaraco_text
|
, jaraco-text
|
||||||
, more-itertools
|
, more-itertools
|
||||||
, portend
|
, portend
|
||||||
, pypytools
|
, pypytools
|
||||||
|
@ -41,7 +41,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
jaraco_text
|
jaraco-text
|
||||||
portend
|
portend
|
||||||
pypytools
|
pypytools
|
||||||
pytest-mock
|
pytest-mock
|
||||||
|
|
|
@ -1,6 +1,16 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
{ lib
|
||||||
, six, jaraco_logging, jaraco_text, jaraco_stream, pytz, jaraco_itertools
|
, buildPythonPackage
|
||||||
, setuptools-scm, jaraco_collections, importlib-metadata
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, six
|
||||||
|
, jaraco_logging
|
||||||
|
, jaraco-text
|
||||||
|
, jaraco_stream
|
||||||
|
, pytz
|
||||||
|
, jaraco_itertools
|
||||||
|
, setuptools-scm
|
||||||
|
, jaraco_collections
|
||||||
|
, importlib-metadata
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -21,7 +31,7 @@ buildPythonPackage rec {
|
||||||
six
|
six
|
||||||
importlib-metadata
|
importlib-metadata
|
||||||
jaraco_logging
|
jaraco_logging
|
||||||
jaraco_text
|
jaraco-text
|
||||||
jaraco_stream
|
jaraco_stream
|
||||||
pytz
|
pytz
|
||||||
jaraco_itertools
|
jaraco_itertools
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, setuptools
|
, setuptools
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, jaraco_text
|
, jaraco-text
|
||||||
, jaraco_collections
|
, jaraco_collections
|
||||||
, keyring
|
, keyring
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
@ -48,7 +48,7 @@ buildPythonPackage rec {
|
||||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
jaraco_text
|
jaraco-text
|
||||||
jaraco_collections
|
jaraco_collections
|
||||||
keyring
|
keyring
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
, keyring
|
, keyring
|
||||||
, requests
|
, requests
|
||||||
, feedparser
|
, feedparser
|
||||||
, jaraco_text
|
, jaraco-text
|
||||||
, jaraco_logging
|
, jaraco_logging
|
||||||
, jaraco-email
|
, jaraco-email
|
||||||
, jaraco-functools
|
, jaraco-functools
|
||||||
|
@ -58,7 +58,7 @@ buildPythonPackage rec {
|
||||||
keyring
|
keyring
|
||||||
requests
|
requests
|
||||||
feedparser
|
feedparser
|
||||||
jaraco_text
|
jaraco-text
|
||||||
jaraco_logging
|
jaraco_logging
|
||||||
jaraco-email
|
jaraco-email
|
||||||
jaraco-functools
|
jaraco-functools
|
||||||
|
|
|
@ -13,14 +13,15 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jaraco.text";
|
pname = "jaraco-text";
|
||||||
version = "3.11.1";
|
version = "3.11.1";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "jaraco.text";
|
||||||
|
inherit version;
|
||||||
hash = "sha256-Mzpd8hSPcTlxhgfN81L+HZUWKXGnKZw4Dcwk2rAWiYA=";
|
hash = "sha256-Mzpd8hSPcTlxhgfN81L+HZUWKXGnKZw4Dcwk2rAWiYA=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
, setuptools
|
, setuptools
|
||||||
, setuptools-scm
|
, setuptools-scm
|
||||||
, jaraco-classes
|
, jaraco-classes
|
||||||
, jaraco_text
|
, jaraco-text
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -31,7 +31,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
jaraco-classes
|
jaraco-classes
|
||||||
jaraco_text
|
jaraco-text
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonNamespaces = [ "jaraco" ];
|
pythonNamespaces = [ "jaraco" ];
|
||||||
|
|
|
@ -157,6 +157,7 @@ mapAliases ({
|
||||||
itanium_demangler = itanium-demangler; # added 2022-10-17
|
itanium_demangler = itanium-demangler; # added 2022-10-17
|
||||||
jaraco_classes = jaraco-classes; # added 2023-07-14
|
jaraco_classes = jaraco-classes; # added 2023-07-14
|
||||||
jaraco_functools = jaraco-functools; # added 2023-07-14
|
jaraco_functools = jaraco-functools; # added 2023-07-14
|
||||||
|
jaraco_text = jaraco-text; # added 2023-07-14
|
||||||
JayDeBeApi = jaydebeapi; # added 2023-02-19
|
JayDeBeApi = jaydebeapi; # added 2023-02-19
|
||||||
jinja2_time = jinja2-time; # added 2022-11-07
|
jinja2_time = jinja2-time; # added 2022-11-07
|
||||||
JPype1 = jpype1; # added 2023-02-19
|
JPype1 = jpype1; # added 2023-02-19
|
||||||
|
|
|
@ -5225,7 +5225,7 @@ self: super: with self; {
|
||||||
|
|
||||||
jaraco-test = callPackage ../development/python-modules/jaraco-test { };
|
jaraco-test = callPackage ../development/python-modules/jaraco-test { };
|
||||||
|
|
||||||
jaraco_text = callPackage ../development/python-modules/jaraco_text { };
|
jaraco-text = callPackage ../development/python-modules/jaraco-text { };
|
||||||
|
|
||||||
jarowinkler = callPackage ../development/python-modules/jarowinkler { };
|
jarowinkler = callPackage ../development/python-modules/jarowinkler { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue