1{ buildPythonPackage
2, fetchPypi
3, lib
4, pytest
5, pytest-xdist
6, pytest-dependency
7, pytest-mock
8, pytestCheckHook
9}:
10
11buildPythonPackage rec {
12 pname = "pytest-order";
13 version = "1.0.1";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "sha256-Xda5KfvX6qbQ7gdYb2XGI7q7Cv5ytIQ8XxUFXWs7Gx8=";
18 };
19
20 buildInputs = [ pytest ];
21
22 checkInputs = [
23 pytestCheckHook
24 pytest-xdist
25 pytest-dependency
26 pytest-mock
27 ];
28
29 meta = {
30 description = "Pytest plugin that allows you to customize the order in which your tests are run";
31 homepage = "https://github.com/pytest-dev/pytest-order";
32 license = lib.licenses.mit;
33 maintainers = [ lib.maintainers.jacg ];
34 };
35}