blob: df08341f81bf9de950b8ca3d6d3f74cf4cd6ffcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
# native
flit-core,
# tests
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "aioitertools";
version = "0.12.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-wqkFW0+7dwX1YbnYYFPor10QzIRdIsMgCMQ0kLLY3Ws=";
};
build-system = [ flit-core ];
nativeCheckInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "aioitertools" ];
meta = {
description = "Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables";
homepage = "https://aioitertools.omnilib.dev/";
changelog = "https://github.com/omnilib/aioitertools/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ teh ];
};
}
|