blob: a7ba0b98b07cce893b652236d5ab6e31538ca79e (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
hatch-vcs,
hatchling,
pytest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-metadata";
version = "3.1.1";
pyproject = true;
src = fetchPypi {
pname = "pytest_metadata";
inherit version;
hash = "sha256-0qKbA1X7wD8WiqltQf+IsaO0SjsCrL5JGAHJigSAF8g=";
};
nativeBuildInputs = [
hatchling
hatch-vcs
];
buildInputs = [ pytest ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Plugin for accessing test session metadata";
homepage = "https://github.com/pytest-dev/pytest-metadata";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ mpoquet ];
};
}
|