mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
54 lines
973 B
Nix
54 lines
973 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
|
|
, hatch-fancy-pypi-readme
|
|
, hatch-vcs
|
|
, hatchling
|
|
|
|
, tenacity
|
|
, typing-extensions
|
|
|
|
, anyio
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "stamina";
|
|
version = "24.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hynek";
|
|
repo = "stamina";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-DasubVqKRhX4CRyKyJ3fIA9Rxmy+kGxkW0pDdu8OPPo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatch-fancy-pypi-readme
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
tenacity
|
|
typing-extensions
|
|
];
|
|
|
|
pythonImportsCheck = [ "stamina" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
anyio
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Production-grade retries for Python";
|
|
homepage = "https://github.com/hynek/stamina";
|
|
changelog = "https://github.com/hynek/stamina/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mbalatsko ];
|
|
};
|
|
}
|