blob: 668a3a6c21c93e65f79fc5f83717f576a8619440 (
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,
fetchFromGitHub,
setuptools,
pytest,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-reverse";
version = "1.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "adamchainz";
repo = "pytest-reverse";
tag = version;
hash = "sha256-d9wx4N3RnPbOk+dZuJaCdbtXfQQwjGo5MwVNrNVGtlo=";
};
build-system = [ setuptools ];
buildInputs = [ pytest ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "pytest_reverse" ];
meta = {
description = "Pytest plugin to reverse test order";
homepage = "https://github.com/adamchainz/pytest-reverse";
changelog = "https://github.com/adamchainz/pytest-reverse/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|