Merge pull request #248082 from tjni/async_stagger

python3.pkgs.async-stagger: rename from async_stagger
This commit is contained in:
OTABI Tomoya 2023-08-10 00:39:02 +09:00 committed by GitHub
commit 41385575ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 6 deletions

View file

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

View file

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

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

View file

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