nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3.pkgs.async-generator: rename from async_generator

+21 -20
+1 -1
pkgs/applications/networking/gns3/server.nix
··· 36 36 aiofiles 37 37 aiohttp 38 38 aiohttp-cors 39 - async_generator 39 + async-generator 40 40 distro 41 41 importlib-resources 42 42 jinja2
+2 -2
pkgs/development/python-modules/aiohttp/default.nix
··· 21 21 , typing-extensions 22 22 , idna-ssl 23 23 # tests_require 24 - , async_generator 24 + , async-generator 25 25 , freezegun 26 26 , gunicorn 27 27 , pytest-mock ··· 80 80 81 81 # NOTE: pytest-xdist cannot be added because it is flaky. See https://github.com/NixOS/nixpkgs/issues/230597 for more info. 82 82 nativeCheckInputs = [ 83 - async_generator 83 + async-generator 84 84 freezegun 85 85 gunicorn 86 86 pytest-mock
+2 -2
pkgs/development/python-modules/asks/default.nix
··· 3 3 , pythonOlder 4 4 , fetchFromGitHub 5 5 , anyio 6 - , async_generator 6 + , async-generator 7 7 , h11 8 8 , curio 9 9 , overly ··· 28 28 29 29 propagatedBuildInputs = [ 30 30 anyio 31 - async_generator 31 + async-generator 32 32 h11 33 33 ]; 34 34
+1 -1
pkgs/development/python-modules/async_generator/default.nix pkgs/development/python-modules/async-generator/default.nix
··· 14 14 src = fetchPypi { 15 15 pname = "async_generator"; 16 16 inherit version; 17 - sha256 = "6ebb3d106c12920aaae42ccb6f787ef5eefdcdd166ea3d628fa8476abe712144"; 17 + hash = "sha256-brs9EGwSkgqq5CzLb3h+9e79zdFm6j1ij6hHar5xIUQ="; 18 18 }; 19 19 20 20 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/geopy/default.nix
··· 1 1 { lib 2 - , async_generator 2 + , async-generator 3 3 , buildPythonPackage 4 4 , docutils 5 5 , fetchFromGitHub ··· 27 27 ]; 28 28 29 29 nativeCheckInputs = [ 30 - async_generator 30 + async-generator 31 31 docutils 32 32 pytestCheckHook 33 33 pytz
+2 -2
pkgs/development/python-modules/jupyterhub/default.nix
··· 5 5 , fetchPypi 6 6 , fetchzip 7 7 , alembic 8 - , async_generator 8 + , async-generator 9 9 , certipy 10 10 , python-dateutil 11 11 , entrypoints ··· 113 113 propagatedBuildInputs = [ 114 114 # https://github.com/jupyterhub/jupyterhub/blob/master/requirements.txt 115 115 alembic 116 - async_generator 116 + async-generator 117 117 certipy 118 118 python-dateutil 119 119 entrypoints
+2 -2
pkgs/development/python-modules/nbclient/default.nix
··· 1 - { async_generator 1 + { async-generator 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , hatchling ··· 36 36 ]; 37 37 38 38 propagatedBuildInputs = [ 39 - async_generator 39 + async-generator 40 40 traitlets 41 41 nbformat 42 42 nest-asyncio
+2 -2
pkgs/development/python-modules/pyinsteon/default.nix
··· 1 1 { lib 2 2 , aiofiles 3 3 , aiohttp 4 - , async_generator 4 + , async-generator 5 5 , buildPythonPackage 6 6 , fetchFromGitHub 7 7 , pypubsub ··· 41 41 ]; 42 42 43 43 nativeCheckInputs = [ 44 - async_generator 44 + async-generator 45 45 pytestCheckHook 46 46 ]; 47 47
+2 -2
pkgs/development/python-modules/pytest-trio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, pythonOlder 2 - , trio, async_generator, hypothesis, outcome, pytest }: 2 + , trio, async-generator, hypothesis, outcome, pytest }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "pytest-trio"; ··· 17 17 18 18 propagatedBuildInputs = [ 19 19 trio 20 - async_generator 20 + async-generator 21 21 outcome 22 22 ]; 23 23
+2 -2
pkgs/development/python-modules/trio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, pythonOlder 2 2 , attrs 3 3 , sortedcontainers 4 - , async_generator 4 + , async-generator 5 5 , exceptiongroup 6 6 , idna 7 7 , outcome ··· 30 30 propagatedBuildInputs = [ 31 31 attrs 32 32 sortedcontainers 33 - async_generator 33 + async-generator 34 34 idna 35 35 outcome 36 36 sniffio
+1
pkgs/top-level/python-aliases.nix
··· 45 45 apache-airflow = throw "apache-airflow has been moved out of pythonPackages and is available as a standalone package"; # added 2023-06-05 46 46 argon2_cffi = argon2-cffi; # added 2022-05-09 47 47 APScheduler = apscheduler; # added 2023-02-19 48 + async_generator = async-generator; # added 2023-08-08 48 49 async_stagger = async-stagger; # added 2023-08-08 49 50 asyncio-nats-client = nats-py; # added 2022-02-08 50 51 awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
+2 -2
pkgs/top-level/python-packages.nix
··· 736 736 737 737 asyauth = callPackage ../development/python-modules/asyauth { }; 738 738 739 - async_generator = callPackage ../development/python-modules/async_generator { }; 740 - 741 739 async-dns = callPackage ../development/python-modules/async-dns { }; 740 + 741 + async-generator = callPackage ../development/python-modules/async-generator { }; 742 742 743 743 async-interrupt = callPackage ../development/python-modules/async-interrupt { }; 744 744