python3.pkgs.async-generator: rename from async_generator

This commit is contained in:
Theodore Ni 2023-08-08 21:08:11 -07:00
parent e04428a3a8
commit 735d9c7fc3
No known key found for this signature in database
GPG Key ID: 48B67583BDDD4474
12 changed files with 21 additions and 20 deletions

View File

@ -36,7 +36,7 @@ python3.pkgs.buildPythonApplication {
aiofiles
aiohttp
aiohttp-cors
async_generator
async-generator
distro
importlib-resources
jinja2

View File

@ -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

View File

@ -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
];

View File

@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchPypi {
pname = "async_generator";
inherit version;
sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144";
hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ=";
};
nativeCheckInputs = [

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
];

View File

@ -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
];

View File

@ -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

View File

@ -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

View File

@ -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 { };