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