nixpkgs/pkgs/development/python-modules/async-stagger/default.nix

45 lines
880 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, pytestCheckHook
, pytest-asyncio
, pytest-mock
}:
buildPythonPackage rec {
pname = "async-stagger";
version = "0.3.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "async_stagger";
inherit version;
hash = "sha256-qp81fp79J36aUWqUvegSStXkZ+m8Zcn62qrJjpVqQ9Y=";
};
nativeCheckInputs = [
pytestCheckHook
pytest-asyncio
pytest-mock
];
disabledTests = [
# RuntimeError: Logic bug in...
"test_stagger_coro_gen"
];
pythonImportsCheck = [
"async_stagger"
];
meta = with lib; {
description = "Happy Eyeballs connection algorithm and underlying scheduling logic in asyncio";
homepage = "https://github.com/twisteroidambassador/async_stagger";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}