mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
python3.pkgs.async-generator: rename from async_generator
This commit is contained in:
parent
e04428a3a8
commit
735d9c7fc3
|
@ -36,7 +36,7 @@ python3.pkgs.buildPythonApplication {
|
|||
aiofiles
|
||||
aiohttp
|
||||
aiohttp-cors
|
||||
async_generator
|
||||
async-generator
|
||||
distro
|
||||
importlib-resources
|
||||
jinja2
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
, typing-extensions
|
||||
, idna-ssl
|
||||
# tests_require
|
||||
, async_generator
|
||||
, async-generator
|
||||
, freezegun
|
||||
, gunicorn
|
||||
, pytest-mock
|
||||
|
@ -80,7 +80,7 @@ buildPythonPackage rec {
|
|||
|
||||
# NOTE: pytest-xdist cannot be added because it is flaky. See https://github.com/NixOS/nixpkgs/issues/230597 for more info.
|
||||
nativeCheckInputs = [
|
||||
async_generator
|
||||
async-generator
|
||||
freezegun
|
||||
gunicorn
|
||||
pytest-mock
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, anyio
|
||||
, async_generator
|
||||
, async-generator
|
||||
, h11
|
||||
, curio
|
||||
, overly
|
||||
|
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
anyio
|
||||
async_generator
|
||||
async-generator
|
||||
h11
|
||||
];
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ buildPythonPackage rec {
|
|||
src = fetchPypi {
|
||||
pname = "async_generator";
|
||||
inherit version;
|
||||
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
|
||||
hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ=";
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
|
@ -1,5 +1,5 @@
|
|||
{ lib
|
||||
, async_generator
|
||||
, async-generator
|
||||
, buildPythonPackage
|
||||
, docutils
|
||||
, fetchFromGitHub
|
||||
|
@ -27,7 +27,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
async_generator
|
||||
async-generator
|
||||
docutils
|
||||
pytestCheckHook
|
||||
pytz
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, fetchPypi
|
||||
, fetchzip
|
||||
, alembic
|
||||
, async_generator
|
||||
, async-generator
|
||||
, certipy
|
||||
, python-dateutil
|
||||
, entrypoints
|
||||
|
@ -113,7 +113,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
# https://github.com/jupyterhub/jupyterhub/blob/master/requirements.txt
|
||||
alembic
|
||||
async_generator
|
||||
async-generator
|
||||
certipy
|
||||
python-dateutil
|
||||
entrypoints
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ async_generator
|
||||
{ async-generator
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, hatchling
|
||||
|
@ -36,7 +36,7 @@ let nbclient = buildPythonPackage rec {
|
|||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
async_generator
|
||||
async-generator
|
||||
traitlets
|
||||
nbformat
|
||||
nest-asyncio
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib
|
||||
, aiofiles
|
||||
, aiohttp
|
||||
, async_generator
|
||||
, async-generator
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pypubsub
|
||||
|
@ -41,7 +41,7 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
async_generator
|
||||
async-generator
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||
, trio, async_generator, hypothesis, outcome, pytest }:
|
||||
, trio, async-generator, hypothesis, outcome, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytest-trio";
|
||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [
|
||||
trio
|
||||
async_generator
|
||||
async-generator
|
||||
outcome
|
||||
];
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||
, attrs
|
||||
, sortedcontainers
|
||||
, async_generator
|
||||
, async-generator
|
||||
, exceptiongroup
|
||||
, idna
|
||||
, outcome
|
||||
|
@ -30,7 +30,7 @@ buildPythonPackage rec {
|
|||
propagatedBuildInputs = [
|
||||
attrs
|
||||
sortedcontainers
|
||||
async_generator
|
||||
async-generator
|
||||
idna
|
||||
outcome
|
||||
sniffio
|
||||
|
|
|
@ -45,6 +45,7 @@ mapAliases ({
|
|||
apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05
|
||||
argon2_cffi = argon2-cffi; # added 2022-05-09
|
||||
APScheduler = apscheduler; # added 2023-02-19
|
||||
async_generator = async-generator; # added 2023-08-08
|
||||
async_stagger = async-stagger; # added 2023-08-08
|
||||
asyncio-nats-client = nats-py; # added 2022-02-08
|
||||
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
||||
|
|
|
@ -736,10 +736,10 @@ self: super: with self; {
|
|||
|
||||
asyauth = callPackage ../development/python-modules/asyauth { };
|
||||
|
||||
async_generator = callPackage ../development/python-modules/async_generator { };
|
||||
|
||||
async-dns = callPackage ../development/python-modules/async-dns { };
|
||||
|
||||
async-generator = callPackage ../development/python-modules/async-generator { };
|
||||
|
||||
async-interrupt = callPackage ../development/python-modules/async-interrupt { };
|
||||
|
||||
async-lru = callPackage ../development/python-modules/async-lru { };
|
||||
|
|
Loading…
Reference in a new issue