Unverified Commit 41385575 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #248082 from tjni/async_stagger

python3.pkgs.async-stagger: rename from async_stagger
parents 4384d0a8 08f0db1c
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -8,15 +8,16 @@
}:

buildPythonPackage rec {
  pname = "async_stagger";
  pname = "async-stagger";
  version = "0.3.1";
  format = "setuptools";

  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mj3daaqxjdavbxcjrdwx5ky9maa2blbv53aa6d7w9zxkrz3b7xa";
    pname = "async_stagger";
    inherit version;
    hash = "sha256-qp81fp79J36aUWqUvegSStXkZ+m8Zcn62qrJjpVqQ9Y=";
  };

  nativeCheckInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
, asyncio-rlock
, asyncio-throttle
, ircstates
, async_stagger
, async-stagger
, async-timeout
, python
}:
@@ -35,7 +35,7 @@ buildPythonPackage rec {
    asyncio-rlock
    asyncio-throttle
    ircstates
    async_stagger
    async-stagger
    async-timeout
  ];

+1 −0
Original line number Diff line number Diff line
@@ -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_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
  Babel = babel; # added 2022-05-06
+1 −1
Original line number Diff line number Diff line
@@ -772,7 +772,7 @@ self: super: with self; {

  asyncstdlib = callPackage ../development/python-modules/asyncstdlib { };

  async_stagger = callPackage ../development/python-modules/async_stagger { };
  async-stagger = callPackage ../development/python-modules/async-stagger { };

  asynctest = callPackage ../development/python-modules/asynctest { };