10 buildPythonPackage rec {
11 pname = "asyncstdlib";
15 disabled = pythonOlder "3.9";
17 src = fetchFromGitHub {
18 owner = "maxfischer2781";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-0VEJ26MP6gIgPvjan7LgCEtSLpg4wXhmFNPGZGntPD8=";
24 build-system = [ flit-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "asyncstdlib" ];
31 description = "Python library that extends the Python asyncio standard library";
32 homepage = "https://asyncstdlib.readthedocs.io/";
33 changelog = "https://github.com/maxfischer2781/asyncstdlib/releases/tag/v${version}";
34 license = with licenses; [ mit ];
35 maintainers = with maintainers; [ fab ];