blob: 7950aaf6e921c7fdacdbdce1db7bcf73ffed19c4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
callPackage,
fetchFromGitHub,
pytest,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-asyncio";
version = "0.25.3"; # N.B.: when updating, tests bleak and aioesphomeapi tests
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pytest-dev";
repo = "pytest-asyncio";
tag = "v${version}";
hash = "sha256-/uG8/uhKYeWrXifAJ7iqvpgXe70YduiqH8FSq2rD7f0=";
};
outputs = [
"out"
"testout"
];
build-system = [ setuptools-scm ];
buildInputs = [ pytest ];
postInstall = ''
mkdir $testout
cp -R tests $testout/tests
'';
doCheck = false;
passthru.tests.pytest = callPackage ./tests.nix { };
pythonImportsCheck = [ "pytest_asyncio" ];
meta = with lib; {
description = "Library for testing asyncio code with pytest";
homepage = "https://github.com/pytest-dev/pytest-asyncio";
changelog = "https://github.com/pytest-dev/pytest-asyncio/blob/${src.tag}/docs/reference/changelog.rst";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}
|