depot/third_party/nixpkgs/pkgs/development/python-modules/aiohappyeyeballs/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

70 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
poetry-core,
# optional-dependencies
furo,
myst-parser,
sphinx-autobuild,
sphinxHook,
# tests
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aiohappyeyeballs";
version = "2.3.6";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "bdraco";
repo = "aiohappyeyeballs";
rev = "refs/tags/v${version}";
hash = "sha256-3cin755WD3e75l+mm//KG+g2UEkHvdYYEFvkJ9j9D6s=";
};
outputs = [
"out"
"doc"
];
nativeBuildInputs = [ poetry-core ] ++ optional-dependencies.docs;
optional-dependencies = {
docs = [
furo
myst-parser
sphinx-autobuild
sphinxHook
];
};
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "aiohappyeyeballs" ];
meta = with lib; {
description = "Happy Eyeballs for pre-resolved hosts";
homepage = "https://github.com/bdraco/aiohappyeyeballs";
changelog = "https://github.com/bdraco/aiohappyeyeballs/blob/v${version}/CHANGELOG.md";
license = licenses.psfl;
maintainers = with maintainers; [
fab
hexa
];
};
}