Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
776 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
wrapt,
}:
buildPythonPackage rec {
pname = "aiounittest";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "kwarunek";
repo = "aiounittest";
tag = version;
hash = "sha256-zX3KpDw7AaEwOLkiHX/ZD+rSMeN7qi9hOVAmVH6Jxgg=";
};
build-system = [ setuptools ];
dependencies = [ wrapt ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "aiounittest" ];
meta = with lib; {
changelog = "https://github.com/kwarunek/aiounittest/releases/tag/${src.tag}";
description = "Test asyncio code more easily";
homepage = "https://github.com/kwarunek/aiounittest";
license = licenses.mit;
maintainers = [ ];
};
}