python3.pkgs.async-stagger: rename from async_stagger
This commit is contained in:
parent
71d2dd203d
commit
08f0db1cc2
@ -8,15 +8,16 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "async_stagger";
|
pname = "async-stagger";
|
||||||
version = "0.3.1";
|
version = "0.3.1";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "async_stagger";
|
||||||
sha256 = "1mj3daaqxjdavbxcjrdwx5ky9maa2blbv53aa6d7w9zxkrz3b7xa";
|
inherit version;
|
||||||
|
hash = "sha256-qp81fp79J36aUWqUvegSStXkZ+m8Zcn62qrJjpVqQ9Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
@ -6,7 +6,7 @@
|
|||||||
, asyncio-rlock
|
, asyncio-rlock
|
||||||
, asyncio-throttle
|
, asyncio-throttle
|
||||||
, ircstates
|
, ircstates
|
||||||
, async_stagger
|
, async-stagger
|
||||||
, async-timeout
|
, async-timeout
|
||||||
, python
|
, python
|
||||||
}:
|
}:
|
||||||
@ -35,7 +35,7 @@ buildPythonPackage rec {
|
|||||||
asyncio-rlock
|
asyncio-rlock
|
||||||
asyncio-throttle
|
asyncio-throttle
|
||||||
ircstates
|
ircstates
|
||||||
async_stagger
|
async-stagger
|
||||||
async-timeout
|
async-timeout
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -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
|
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
|
argon2_cffi = argon2-cffi; # added 2022-05-09
|
||||||
APScheduler = apscheduler; # added 2023-02-19
|
APScheduler = apscheduler; # added 2023-02-19
|
||||||
|
async_stagger = async-stagger; # added 2023-08-08
|
||||||
asyncio-nats-client = nats-py; # added 2022-02-08
|
asyncio-nats-client = nats-py; # added 2022-02-08
|
||||||
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
awkward0 = throw "awkward0 has been removed, use awkward instead"; # added 2022-12-13
|
||||||
Babel = babel; # added 2022-05-06
|
Babel = babel; # added 2022-05-06
|
||||||
|
@ -772,7 +772,7 @@ self: super: with self; {
|
|||||||
|
|
||||||
asyncstdlib = callPackage ../development/python-modules/asyncstdlib { };
|
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 { };
|
asynctest = callPackage ../development/python-modules/asynctest { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user